< Rebol Programming

USAGE:

TRUE? val 

DESCRIPTION:

Returns true if an expression can be used as true.

TRUE? is a function value.

ARGUMENTS

  • val -- (Type: any)

SOURCE CODE

true?: func [
    "Returns true if an expression can be used as true." 
    val
][not not :val]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.