IsEmpty checks whether the bit map is empty.
()
| 188 | |
| 189 | // IsEmpty checks whether the bit map is empty. |
| 190 | func (b OptionalEvalPropKeySet) IsEmpty() bool { |
| 191 | return b&allOptPropsMask == 0 |
| 192 | } |
| 193 | |
| 194 | // IsFull checks whether all optional properties are contained in the bit map. |
| 195 | func (b OptionalEvalPropKeySet) IsFull() bool { |
no outgoing calls