BoolExpr

chovynz

We are all noobs! in different states of Noobism!
Reaction score
130
I've been warned off boolexprs. I don't know why. Anyone want to explain?
What are they and why are they bad? What can we use instead of them? Does it matter that much or is it a good issue to fix?
 

denmax

You can change this now in User CP.
Reaction score
155
I don't know what the heck is that... Is that a person, a program, a group, a method of I have no knowledge, etc? And you posted it in WE Help Zone so thats why im asking these questions..
 

Chocobo

White-Flower
Reaction score
409
boolexpr = Boolean Expression

used mainly for groups or conditions.

Leaks in some cases.

ex :

Code:
local group g = GetUnitsInRangeOfLocMatching(0,<offset>,Condition(function somefunc))

It creates a boolexpr based on "somefunc" (must return a boolean).

There it leaks, because it creates a boolexpr.


Code:
local boolexpr b=Condition(function somefunc)
local group g = GetUnitsInRangeOfLocMatching(0,<Offset>,b)

There it won't leak, but you will have to clean the boolexpr variable :

Code:
call DestroyBoolExpr(b)


If you don't understand the conditionfunc to boolexpr, go there.
 
I

IKilledKEnny

Guest
BoolExprs are handles (I think, might just be treated like a handle) thus we need to destroy them like destroying other leaking handles.

set boolexpr b=Condition(function my_function_name)
// use it
call DestroyBoolExpr(b)
set b=null
 

Vexorian

Why no custom sig?
Reaction score
187
Never destroy a boolexpr created by Condition
- It doesn't leak.
- It might cause issues if you remove it.
 

waaaks!

Zinctified
Reaction score
255
I don't know what the heck is that... Is that a person, a program, a group, a method of I have no knowledge, etc? And you posted it in WE Help Zone so thats why im asking these questions..

it's a JASS variable...
 
General chit-chat
Help Users
  • No one is chatting at the moment.

      The Helper Discord

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top