ArcGIS Runtime SDK for iOS
100.15
|
The result from the successful evaluation of an Arcade Expression.
Instance Methods | |
(nullable id) | - castToType: |
(BOOL) | - isEqualToArcadeEvaluationResult: |
Properties | |
id | result |
- (nullable id) castToType: | (AGSArcadeExpressionReturnType) | type |
Casts the result of an evaluation to another type using the arcade casting rules.
Attempts to cast to the required type using the arcade casting rules. Arcade does not throw exceptions when its casting fails, instead it returns a nil
value, or NAN
in the case of casting to a number.
type | The type to cast to. |
nil
. - (BOOL) isEqualToArcadeEvaluationResult: | (AGSArcadeEvaluationResult *) | other |
Tests if two ArcadeEvaluationResult
objects are equal.
This is a deep comparison so two separate dictionaries with the same keys and values will compare equal.
other | The second object. |
YES
if this AGSArcadeEvaluationResult
and the other AGSArcadeEvaluationResult
are equivalent, NO
if they are not.
|
readnonatomicstrong |
The result of a successful evaluation.