Finds the index of the first occurrence of a given sequence as a slice.
If this sequence represents an infinite set or series and doesn't contain slice, this will never return!
Namespace: SequencesAssembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntaxpublic int IndexOfSlice(
IEnumerable<T> slice
)
public int IndexOfSlice(
IEnumerable<T> slice
)
Public Function IndexOfSlice (
slice As IEnumerable(Of T)
) As Integer
Public Function IndexOfSlice (
slice As IEnumerable(Of T)
) As Integer
public:
virtual int IndexOfSlice(
IEnumerable<T>^ slice
) sealed
public:
virtual int IndexOfSlice(
IEnumerable<T>^ slice
) sealed
abstract IndexOfSlice :
slice : IEnumerable<'T> -> int
override IndexOfSlice :
slice : IEnumerable<'T> -> int
abstract IndexOfSlice :
slice : IEnumerable<'T> -> int
override IndexOfSlice :
slice : IEnumerable<'T> -> int
Parameters
- slice
- Type: System.Collections.Generic IEnumerable T
The sequence to search for.
Return Value
Type:
Int32The index of the first occurrence of
slice if any is found; otherwise, -1.
Implements
ISequence T IndexOfSlice(IEnumerable T )
See Also