Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 354 Bytes

not.md

File metadata and controls

18 lines (11 loc) · 354 Bytes

not

not negates the given value.

Examples

  • (not true)false
  • (not false)true

Forms

(not expr:bool)bool

  • expr is an arbitrary expressions.

not will evaluate the expression and error out if it errors out or its result cannot be coalesced to a boolean. Otherwise, the negated boolish value is returned.