Format

ispointer(Value)

Args

Value: The value to test

Returns

1 if the value is a pointer; 0 otherwise.

Tests whether an value is a pointer.

Note

This does not check if the pointer is still valid, like for instance if the object it belongs to has been deleted, or if it points to a list index that is now out of bounds.

See also

& operator (pointers)