IsNull Class
Returns false if the value exists and is non-null, true otherwise.
This is the same condition used in the NullCoalesce operator:
expr ?? res
Is the same as:
isNull(expr) ? res : expr
Location
- Namespace
- Fuse.Reactive
- Package
- Fuse.Reactive.Expressions 2.9.1
Interface of IsNull
Inherited from UnaryOperator
Compute(object) : object uno
IsOperandOptional : bool uno
OnLostOperand(IListener) uno
OnNewOperand(IListener, object) uno
Operand : Expression uno
Inherited from ComputeExpression
GetArgument(int) : Expression uno
Name : string uno
TryCompute(Argument[], object) : bool uno
Inherited from Expression
SourceFileName : string ux
hide
SourceLineNumber : int ux
hide
Subscribe(IContext, IListener) : IDisposable uno
See IExpression.Subscribe
for docs.
Inherited from object
Equals(object) : bool uno
GetHashCode : int uno
GetType : Type uno
ToString : string uno
Attached UX Attributes
GlobalKey (attached by Resource) : string ux
Implemented Interfaces
IExpression uno
ISourceLocation uno
hide