HaveItem() - maybe needs more explanation in manual

Report any Hollywood bugs here
Post Reply
peceha
Posts: 111
Joined: Tue Dec 13, 2016 8:39 am
Location: Poland

HaveItem() - maybe needs more explanation in manual

Post by peceha »

Hi
please check this out:

Code: Select all

t={["One"]=1}
DebugPrint(HaveItem(t,"One"))
it prints 0 !! - but it should be 1
The thing is, HaveItem() probably converts its second argument to lowercase and cannot find a match if there is a match (and opposite):

Code: Select all

t={["one"]=1}
DebugPrint(HaveItem(t,"One"))
prints 1

The same apply to the other constructor of the table (t={one=1}) - in this case HaveItem(t,"one") and HaveItem(t,"One") will show 1

Maybe there should be a remark in docs ? It took me whole day to find out where the problem is.

RawGet() works correctly here.
User avatar
airsoftsoftwair
Posts: 5433
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: HaveItem() - maybe needs more explanation in manual

Post by airsoftsoftwair »

Ok, added a little note.
Post Reply