Tries to find the specified key in the index.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public override bool TryLookup(
Interval<T> key,
out int index
)
Public Overrides Function TryLookup (
key As Interval(Of T),
<OutAttribute> ByRef index As Integer
) As Boolean
public:
virtual bool TryLookup(
Interval<T> key,
[OutAttribute] int% index
) override
abstract TryLookup :
key : Interval<'T> *
index : int byref -> bool
override TryLookup :
key : Interval<'T> *
index : int byref -> bool
Parameters
- key
- Type: Extreme.MathematicsIntervalT
The key to locate. - index
- Type: SystemInt32
If key was found, the position
of the first occurrence of key in the index;
otherwise undefined.
Return Value
Type:
Boolean if
key was found in the index;
otherwise
.
Reference