**Boolean::is_True()**

returns true if the Boolean value is true

    Boolean::is_True  = -> @.toString() == 'true'

**Boolean::is_False()**

returns true if the Boolean value is false

    Boolean::is_False = -> @.toString() == 'false'

---
back to [index](index.html)