Skip to main content

IsNotNothing

Type

operator

Summary

Determines whether Target is nothing or not.

Syntax

<Target> is not nothing

Description

Use the IsNotNothing operator to test if operators or handlers have returned anything.

Parameters

NameTypeDescription

Target

Any expression

Examples

public handler CanBeNumber(in pString as String) returns Boolean
variable tNum as optional Number
put pString parsed as number into tNum
return tNum is not nothing
end handler

Value

NameTypeDescription

return

Returns false if the given expression Target is nothing, and true otherwise.

Thank you for your feedback!

Was this page helpful?