RangeCollectionContains Method (Int64, Int64) |
Tells if all longs from start to last (inclusive) are members of this RangeCollection.
Namespace: Bio.UtilAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public bool Contains(
long start,
long last
)
Public Function Contains (
start As Long,
last As Long
) As Boolean
public:
bool Contains(
long long start,
long long last
)
member Contains :
start : int64 *
last : int64 -> bool
Parameters
- start
- Type: SystemInt64
The first long - last
- Type: SystemInt64
The last long
Return Value
Type:
Booleantrue if all longs from start to last (inclusive) are members of this RangeCollection; otherwise, false
See Also