Click or drag to resize
RangeCollectionIsBetween Method
Tells if every element of the RangeCollection is between low (inclusive) and high (inclusive)

Namespace: Bio.Util
Assembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax
public bool IsBetween(
	long low,
	long high
)

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: Boolean
true if every element is between these two values (inclusive); otherwise, false
See Also