Found? - Function Summary
Summary:
Returns TRUE if value is not NONE.
Usage:
found? value
Arguments:
value - The value argument.
Description:
Returns FALSE for all other values. Not usually required because most conditional function will accept a NONE as FALSE and all other values as TRUE.
if found? find [email protected] ".com" [print "found it"]
found it
Related:
find - Finds a value in a series and returns the series at the start of it. pick - Returns the value at the specified position in a series.