Code: Select all
....
return Foo & Bar
Code: Select all
....
return Foo | Bar
Code: Select all
Foo | Bar
So my Question is, does....
Code: Select all
....
return Foo & Bar
// returns true if both are true? false if not?
Code: Select all
....
return Foo | Bar
// return true if one is false and one is true?
// or return the true value?