• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Inline?

Status
Not open for further replies.

Kazeon

Hosted Project: EC
Level 34
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