Skip to content
This repository was archived by the owner on Mar 16, 2025. It is now read-only.

Latest commit

 

History

History
18 lines (11 loc) · 354 Bytes

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.