• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

Inline?

Status
Not open for further replies.

Kazeon

Hosted Project: EC
Level 33
Joined
Oct 12, 2011
Messages
3,449
Simple question: does constant function automatically inlined by normal WE?
something like:
JASS:
    constant function Accuracy takes nothing returns real
        return 0.0312500
    endfunction

    call TimerStart(timer, Accuracy(), true, function func)
?

If not, then I guess common GUI configuration using globals is better.

THanks for any answer ;)
 

Deleted member 219079

D

Deleted member 219079

So what's a constant function actually?
Function which can't call natives.

They don't serve any performance boost past normal functions, but I guess it creates credibility like private functions.
 
Status
Not open for further replies.
Top