Rebol Programming/found?
Appearance
USAGE:
[edit | edit source]FOUND? value
DESCRIPTION:
[edit | edit source]Returns TRUE if value is not NONE.
FOUND? is a function value.
ARGUMENTS
[edit | edit source]- value -- (Type: any)
SOURCE CODE
[edit | edit source]found?: func [ "Returns TRUE if value is not NONE." value ][ not none? :value ]