Skip to content

Latest commit

 

History

History
36 lines (19 loc) · 448 Bytes

File metadata and controls

36 lines (19 loc) · 448 Bytes

ValueQ

ValueQ(expr) 

returns True if and only if expr is defined.

Examples

>> ValueQ(x)
False

>> x=1;

>> ValueQ(x)
True

>> ValueQ(True)
False

Implementation status

  • ✅ - full supported

Github