UnaryValue
Overview
UnaryValue is used for unary operations, like Plus, Minus, Not or casts.
Location
- Reference: RemObjects.Elements.Cirrus.dll
- Namespace: RemObjects.Elements.Cirrus.Values
- Ancestry: Value | UnaryValue
constructor
Create a new instance of this class
constructor
UnaryValue()
init()
UnaryValue()
Sub New()
constructor (Value, UnaryOperator)
Create a new instance of this class
constructor(aSubValue: Value; aOperator: UnaryOperator)
UnaryValue(Value aSubValue, UnaryOperator aOperator)
init(_ aSubValue: Value, _ aOperator: UnaryOperator)
UnaryValue(Value aSubValue, UnaryOperator aOperator)
Sub New(aSubValue As Value, aOperator As UnaryOperator)
Parameters:
- aSubValue: value to run this operator on
- aOperator: operator
constructor (Value, UnaryOperator, IType)
Create a new instance of this class
constructor(aSubValue: Value; aOperator: UnaryOperator; aType: IType)
UnaryValue(Value aSubValue, UnaryOperator aOperator, IType aType)
init(_ aSubValue: Value, _ aOperator: UnaryOperator, _ aType: IType)
UnaryValue(Value aSubValue, UnaryOperator aOperator, IType aType)
Sub New(aSubValue As Value, aOperator As UnaryOperator, aType As IType)
Parameters:
- aSubValue: value to run this operator on
- aOperator: operator
- aType: type (for casts)
Binary (declared in Value)
Creates a binary value
method Binary(aOp: BinaryOperator; aOther: Value): Value
Value Binary(BinaryOperator aOp, Value aOther)
func Binary(_ aOp: BinaryOperator, _ aOther: Value) -> Value
Value Binary(BinaryOperator aOp, Value aOther)
Function Binary(aOp As BinaryOperator, aOther As Value) As Value
Parameters:
- aOp: Operator
- aOther: Right side value
creates an identifier value
Parameters:
- aName: Name of the value
creates an identifier value
Parameters:
- aName: Name of the value
- aArgs: Generic arguments.
Kind
Value kind; use this for a fast way of determining what kind of sub class a Value object is
property Kind: ValueKind read;
ValueKind Kind { get; }
var Kind: ValueKind { get{} }
ValueKind Kind { __get; }
ReadOnly Property Kind() As ValueKind
Length (declared in Value)
Creates a length value
method Length: Value
Value Length()
func Length() -> Value
Value Length()
Function Length() As Value
NotNil (declared in Value)
Creates a not nil value
method NotNil: Value
Value NotNil()
func NotNil() -> Value
Value NotNil()
Function NotNil() As Value
Operator
Operator for this unary value
property Operator: UnaryOperator read write;
UnaryOperator Operator { get; set; }
var Operator: UnaryOperator { get{} set{} }
UnaryOperator Operator { __get; __set; }
Property Operator() As UnaryOperator
Position (declared in Value)
Position this value is defined at (if not set, it will be at the aspects position)
property Position: IPosition read write;
IPosition Position { get; set; }
var Position: IPosition { get{} set{} }
IPosition Position { __get; __set; }
Property Position() As IPosition
Creates a call value
Parameters:
- aName: Method name
- aGP: Generic parameters to pass
- aArgs: Arguments for this call
Creates a call value
Parameters:
- aName: Method name
- aArgs: Arguments for this call
SubArray (declared in Value)
Creates an array/property element access value
Parameters:
- aArgs: Arguments for element access
SubValue
The subvalue to do the operation on
property SubValue: Value read write;
Value SubValue { get; set; }
var SubValue: Value { get{} set{} }
Value SubValue { __get; __set; }
Property SubValue() As Value
ToString
Returns the string value of this value
method ToString: String
String ToString()
func ToString() -> String
String ToString()
Function ToString() As String
Type
Gets or sets the result type
property Type: IType read write;
IType Type { get; set; }
var Type: IType { get{} set{} }
IType Type { __get; __set; }
Property Type() As IType
Unary (declared in Value)
Creates a unary value
method Unary(aOp: UnaryOperator): Value
Value Unary(UnaryOperator aOp)
func Unary(_ aOp: UnaryOperator) -> Value
Value Unary(UnaryOperator aOp)
Function Unary(aOp As UnaryOperator) As Value
Parameters:
- aOp: Operator
Kind
Value kind; use this for a fast way of determining what kind of sub class a Value object is
property Kind: ValueKind read;
ValueKind Kind { get; }
var Kind: ValueKind { get{} }
ValueKind Kind { __get; }
ReadOnly Property Kind() As ValueKind
Operator
Operator for this unary value
property Operator: UnaryOperator read write;
UnaryOperator Operator { get; set; }
var Operator: UnaryOperator { get{} set{} }
UnaryOperator Operator { __get; __set; }
Property Operator() As UnaryOperator
Position (declared in Value)
Position this value is defined at (if not set, it will be at the aspects position)
property Position: IPosition read write;
IPosition Position { get; set; }
var Position: IPosition { get{} set{} }
IPosition Position { __get; __set; }
Property Position() As IPosition
SubValue
The subvalue to do the operation on
property SubValue: Value read write;
Value SubValue { get; set; }
var SubValue: Value { get{} set{} }
Value SubValue { __get; __set; }
Property SubValue() As Value
Type
Gets or sets the result type
constructor
Create a new instance of this class
constructor
UnaryValue()
init()
UnaryValue()
Sub New()
constructor (Value, UnaryOperator)
Create a new instance of this class
constructor(aSubValue: Value; aOperator: UnaryOperator)
UnaryValue(Value aSubValue, UnaryOperator aOperator)
init(_ aSubValue: Value, _ aOperator: UnaryOperator)
UnaryValue(Value aSubValue, UnaryOperator aOperator)
Sub New(aSubValue As Value, aOperator As UnaryOperator)
Parameters:
- aSubValue: value to run this operator on
- aOperator: operator
constructor (Value, UnaryOperator, IType)
Create a new instance of this class
constructor(aSubValue: Value; aOperator: UnaryOperator; aType: IType)
UnaryValue(Value aSubValue, UnaryOperator aOperator, IType aType)
init(_ aSubValue: Value, _ aOperator: UnaryOperator, _ aType: IType)
UnaryValue(Value aSubValue, UnaryOperator aOperator, IType aType)
Sub New(aSubValue As Value, aOperator As UnaryOperator, aType As IType)
Parameters:
- aSubValue: value to run this operator on
- aOperator: operator
- aType: type (for casts)
Binary (declared in Value)
Creates a binary value
method Binary(aOp: BinaryOperator; aOther: Value): Value
Value Binary(BinaryOperator aOp, Value aOther)
func Binary(_ aOp: BinaryOperator, _ aOther: Value) -> Value
Value Binary(BinaryOperator aOp, Value aOther)
Function Binary(aOp As BinaryOperator, aOther As Value) As Value
Parameters:
- aOp: Operator
- aOther: Right side value
creates an identifier value
Parameters:
- aName: Name of the value
creates an identifier value
Parameters:
- aName: Name of the value
- aArgs: Generic arguments.
Length (declared in Value)
Creates a length value
method Length: Value
Value Length()
func Length() -> Value
Value Length()
Function Length() As Value
NotNil (declared in Value)
Creates a not nil value
method NotNil: Value
Value NotNil()
func NotNil() -> Value
Value NotNil()
Function NotNil() As Value
Creates a call value
Parameters:
- aName: Method name
- aGP: Generic parameters to pass
- aArgs: Arguments for this call
Creates a call value
Parameters:
- aName: Method name
- aArgs: Arguments for this call
SubArray (declared in Value)
Creates an array/property element access value
Parameters:
- aArgs: Arguments for element access
ToString
Returns the string value of this value
method ToString: String
String ToString()
func ToString() -> String
String ToString()
Function ToString() As String
Unary (declared in Value)
Creates a unary value
method Unary(aOp: UnaryOperator): Value
Value Unary(UnaryOperator aOp)
func Unary(_ aOp: UnaryOperator) -> Value
Value Unary(UnaryOperator aOp)
Function Unary(aOp As UnaryOperator) As Value
Parameters:
- aOp: Operator