Operator operator <=
operator <=(DiscreteFieldFunction, DiscreteFieldFunction)
Composes a function that indicates if, point-wise, this function's field result is less than or equal to another.
Declaration
public static BooleanFieldFunction operator <=(DiscreteFieldFunction a, DiscreteFieldFunction b)
Parameters
| Type | Name | Description |
|---|---|---|
| DiscreteFieldFunction | a | |
| DiscreteFieldFunction | b |
Returns
| Type | Description |
|---|---|
| BooleanFieldFunction | A function that indicates if this function's field result is less than or equal to another. |
Remarks
The result has no value where either of the given fields has no value.
The result extent is the intersection of the extents of the given fields.
The spatial reference of both fields must be equivalent.
Applies to
Platforms and versions
| Target | Versions |
|---|---|
| .NET | 300 |
| .NET Windows | 300 |
| .NET Android | 300 |
| .NET iOS | 300 |
operator <=(DiscreteFieldFunction, int)
Composes a function that indicates if, point-wise, this function's field result is less than or equal to a given value.
Declaration
public static BooleanFieldFunction operator <=(DiscreteFieldFunction f, int v)
Parameters
| Type | Name | Description |
|---|---|---|
| DiscreteFieldFunction | f | |
| int | v |
Returns
| Type | Description |
|---|---|
| BooleanFieldFunction | A function that indicates if this function's field result is less than or equal to a given value. |
Remarks
The result has no value where this field has no value.
The result extent equals that of this field.
Applies to
Platforms and versions
| Target | Versions |
|---|---|
| .NET | 300 |
| .NET Windows | 300 |
| .NET Android | 300 |
| .NET iOS | 300 |
operator <=(int, DiscreteFieldFunction)
Composes a function that indicates if, point-wise, this function's field result is less than or equal to a given value.
Declaration
public static BooleanFieldFunction operator <=(int v, DiscreteFieldFunction f)
Parameters
| Type | Name | Description |
|---|---|---|
| int | v | |
| DiscreteFieldFunction | f |
Returns
| Type | Description |
|---|---|
| BooleanFieldFunction | A function that indicates if this function's field result is less than or equal to a given value. |
Remarks
The result has no value where this field has no value.
The result extent equals that of this field.
Applies to
Platforms and versions
| Target | Versions |
|---|---|
| .NET | 300 |
| .NET Windows | 300 |
| .NET Android | 300 |
| .NET iOS | 300 |