if ref.IsInList FormList
But how do I determine that it is NOT? How do I negate boolean values? I've tried:
if !(ref.IsInList FormList)
but that's apparently invalid. I've tried searching for an answer, but I get dozens of pages of unrelated stuff.
EDIT: seems that boolean values are actually just single bit integers, meaning value is 1 or 0. So, I should do:
if 1 - (ref.IsInList FormList)
right?
