FutureProg functions
between
Overload 1
between overload 1
Boolean between(DateTime Value, DateTime Bound1, DateTime Bound2)
Available in
- computer function
- computer program
- standard futureprog
Returns true if the first value is inclusively between the other two values. The bounds may be supplied in either order.
| Parameter | Type | Description |
|---|---|---|
Value |
DateTime |
The value to test. |
Bound1 |
DateTime |
One inclusive bound of the range. |
Bound2 |
DateTime |
The other inclusive bound of the range. |
Overload 2
between overload 2
Boolean between(MudDateTime Value, MudDateTime Bound1, MudDateTime Bound2)
Available in
- computer function
- computer program
- standard futureprog
Returns true if the first value is inclusively between the other two values. The bounds may be supplied in either order.
| Parameter | Type | Description |
|---|---|---|
Value |
MudDateTime |
The value to test. |
Bound1 |
MudDateTime |
One inclusive bound of the range. |
Bound2 |
MudDateTime |
The other inclusive bound of the range. |
Overload 3
between overload 3
Boolean between(Number Value, Number Bound1, Number Bound2)
Available in
- computer function
- computer program
- standard futureprog
Returns true if the first value is inclusively between the other two values. The bounds may be supplied in either order.
| Parameter | Type | Description |
|---|---|---|
Value |
Number |
The value to test. |
Bound1 |
Number |
One inclusive bound of the range. |
Bound2 |
Number |
The other inclusive bound of the range. |
Overload 4
between overload 4
Boolean between(TimeSpan Value, TimeSpan Bound1, TimeSpan Bound2)
Available in
- computer function
- computer program
- standard futureprog
Returns true if the first value is inclusively between the other two values. The bounds may be supplied in either order.
| Parameter | Type | Description |
|---|---|---|
Value |
TimeSpan |
The value to test. |
Bound1 |
TimeSpan |
One inclusive bound of the range. |
Bound2 |
TimeSpan |
The other inclusive bound of the range. |