invert a bool value, i.e. TRUE => FALSE, FALSE => TRUE

not(bool)

Arguments

bool

The bool to invert TRUE/FALSE

Value

Details

Instead of the traditional inversion of boolean values using !(bool), here we provide a more lispy style inversion function called 'not'. This can be applied to boolean functions as a simple function call.

Author

Jay Morgan

Examples