Class Boolean
A utility class that is equivalent to boolean
.
As opposed to boolean
, this type does not require explicit binding.
Import path
import codeql.util.Boolean
Direct supertypes
Predicates
toString | Returns either “true” or “false”. |
Inherited predicates
booleanAnd | Returns the boolean and of the receiver and the argument | from boolean |
booleanNot | Returns the negation of the receiver | from boolean |
booleanOr | Returns the boolean or of the receiver and the argument | from boolean |
booleanXor | Returns the boolean exclusive or of the receiver and the argument | from boolean |