RangeCollectionIsBetween Method |
Tells if every element of the RangeCollection is between low (inclusive) and high (inclusive)
Namespace: Bio.UtilAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public bool IsBetween(
long low,
long high
)
Public Function IsBetween (
low As Long,
high As Long
) As Boolean
public:
bool IsBetween(
long long low,
long long high
)
member IsBetween :
low : int64 *
high : int64 -> bool
Parameters
- low
- Type: SystemInt64
That value that every element must be at least as large as - high
- Type: SystemInt64
The value that every element must be no learger than
Return Value
Type:
Booleantrue if every element is between these two values (inclusive); otherwise, false
See Also