Returns an empty ReadOnlySpan<T>.
IsEmptyReturns a value that indicates the current read-only span is empty.
Item[Int32]Gets an item from the read-only span at the specified zero-based index.
LengthThe number of items in the read-only span.
ToImmutableArray<T>(ReadOnlySpan<T>)Produce an immutable array of contents from specified elements.
BinarySearch<T>(ReadOnlySpan<T>, IComparable<T>)Searches an entire sorted ReadOnlySpan<T> for a value using the specified IComparable<T> generic interface.
BinarySearch<T,TComparer>(ReadOnlySpan<T>, T, TComparer)Searches an entire sorted ReadOnlySpan<T> for a specified value using the specified TComparer
generic type.
Searches an entire sorted ReadOnlySpan<T> for a value using the specified TComparable
generic type.
Determines the length of any common prefix shared between span
and other
.
Finds the length of any common prefix shared between span
and other
.
Indicates whether a specified value is found in a read-only span. Values are compared using IEquatable{T}.Equals(T).
ContainsAny<T>(ReadOnlySpan<T>, T, T, T, IEqualityComparer<T>) ContainsAny<T>(ReadOnlySpan<T>, T, T, T)Searches for an occurrence of value0
, value1
, or value2
.
Searches for an occurrence of value0
or value1
.
Searches for an occurrence of any of the specified values
.
Searches for an occurrence of any of the specified values
.
Searches for any value other than value0
, value1
, or value2
.
Searches for any value other than value0
or value1
.
Searches for any value other than the specified value
.
Searches for any value other than the specified values
.
Searches for any value other than the specified values
.
Searches for any value outside of the range between lowInclusive
and highInclusive
, inclusive.
Searches for any value in the range between lowInclusive
and highInclusive
, inclusive.
Counts the number of times the specified value
occurs in the span
.
Counts the number of times value
occurs in span
.
Determines whether the specified value appears at the end of the span.
EndsWith<T>(ReadOnlySpan<T>, ReadOnlySpan<T>, IEqualityComparer<T>) EndsWith<T>(ReadOnlySpan<T>, ReadOnlySpan<T>)Determines whether the specified sequence appears at the end of a read-only span.
IndexOf<T>(ReadOnlySpan<T>, T, IEqualityComparer<T>) IndexOf<T>(ReadOnlySpan<T>, T)Searches for the specified value and returns the index of its first occurrence. Values are compared using IEquatable{T}.Equals(T).
IndexOf<T>(ReadOnlySpan<T>, ReadOnlySpan<T>, IEqualityComparer<T>) IndexOf<T>(ReadOnlySpan<T>, ReadOnlySpan<T>)Searches for the specified sequence and returns the index of its first occurrence. Values are compared using IEquatable{T}.Equals(T).
IndexOfAny<T>(ReadOnlySpan<T>, T, T, T, IEqualityComparer<T>) IndexOfAny<T>(ReadOnlySpan<T>, T, T, T)Searches for the first index of any of the specified values similar to calling IndexOf several times with the logical OR operator.
IndexOfAny<T>(ReadOnlySpan<T>, T, T, IEqualityComparer<T>) IndexOfAny<T>(ReadOnlySpan<T>, T, T)Searches for the first index of any of the specified values similar to calling IndexOf several times with the logical OR operator.
IndexOfAny<T>(ReadOnlySpan<T>, SearchValues<T>)Searches for the first index of any of the specified values.
IndexOfAny<T>(ReadOnlySpan<T>, ReadOnlySpan<T>, IEqualityComparer<T>) IndexOfAny<T>(ReadOnlySpan<T>, ReadOnlySpan<T>)Searches for the first index of any of the specified values similar to calling IndexOf several times with the logical OR operator.
IndexOfAnyExcept<T>(ReadOnlySpan<T>, T, T, T, IEqualityComparer<T>) IndexOfAnyExcept<T>(ReadOnlySpan<T>, T, T, T)Searches for the first index of any value other than the specified value0
, value1
, or value2
.
Searches for the first index of any value other than the specified value0
or value1
.
Searches for the first index of any value other than the specified value
.
Searches for the first index of any value other than the specified values
.
Searches for the first index of any value other than the specified values
.
Searches for the first index of any value outside of the range between lowInclusive
and highInclusive
, inclusive.
Searches for the first index of any value in the range between lowInclusive
and highInclusive
, inclusive.
Searches for the specified value and returns the index of its last occurrence. Values are compared using IEquatable{T}.Equals(T).
LastIndexOf<T>(ReadOnlySpan<T>, ReadOnlySpan<T>, IEqualityComparer<T>) LastIndexOf<T>(ReadOnlySpan<T>, ReadOnlySpan<T>)Searches for the specified sequence and returns the index of its last occurrence. Values are compared using IEquatable{T}.Equals(T).
LastIndexOfAny<T>(ReadOnlySpan<T>, T, T, T, IEqualityComparer<T>) LastIndexOfAny<T>(ReadOnlySpan<T>, T, T, T)Searches for the last index of any of the specified values similar to calling LastIndexOf several times with the logical OR operator.
LastIndexOfAny<T>(ReadOnlySpan<T>, T, T, IEqualityComparer<T>) LastIndexOfAny<T>(ReadOnlySpan<T>, T, T)Searches for the last index of any of the specified values similar to calling LastIndexOf several times with the logical OR operator.
LastIndexOfAny<T>(ReadOnlySpan<T>, SearchValues<T>)Searches for the last index of any of the specified values.
LastIndexOfAny<T>(ReadOnlySpan<T>, ReadOnlySpan<T>, IEqualityComparer<T>) LastIndexOfAny<T>(ReadOnlySpan<T>, ReadOnlySpan<T>)Searches for the last index of any of the specified values similar to calling LastIndexOf several times with the logical OR operator.
LastIndexOfAnyExcept<T>(ReadOnlySpan<T>, T, T, T, IEqualityComparer<T>) LastIndexOfAnyExcept<T>(ReadOnlySpan<T>, T, T, T)Searches for the last index of any value other than the specified value0
, value1
, or value2
.
Searches for the last index of any value other than the specified value0
or value1
.
Searches for the last index of any value other than the specified value
.
Searches for the last index of any value other than the specified values
.
Searches for the last index of any value other than the specified values
.
Searches for the last index of any value outside of the range between lowInclusive
and highInclusive
, inclusive.
Searches for the last index of any value in the range between lowInclusive
and highInclusive
, inclusive.
Determines whether two read-only sequences overlap in memory and outputs the element offset.
Overlaps<T>(ReadOnlySpan<T>, ReadOnlySpan<T>)Determines whether two read-only sequences overlap in memory.
Replace<T>(ReadOnlySpan<T>, Span<T>, T, T, IEqualityComparer<T>) Replace<T>(ReadOnlySpan<T>, Span<T>, T, T)Copies source
to destination
, replacing all occurrences of oldValue
with newValue
.
Determines the relative order of two read-only sequences by comparing their elements using IComparable{T}.CompareTo(T).
SequenceEqual<T>(ReadOnlySpan<T>, ReadOnlySpan<T>, IEqualityComparer<T>)Determines whether two sequences are equal by comparing the elements using an IEqualityComparer<T>.
SequenceEqual<T>(ReadOnlySpan<T>, ReadOnlySpan<T>)Determines whether two read-only sequences are equal by comparing the elements using IEquatable{T}.Equals(T).
Split<T>(ReadOnlySpan<T>, T)Returns a type that allows for enumeration of each element within a split span using the provided separator character.
Split<T>(ReadOnlySpan<T>, ReadOnlySpan<T>)Returns a type that allows for enumeration of each element within a split span using the provided separator span.
SplitAny<T>(ReadOnlySpan<T>, SearchValues<T>)Returns a type that allows for enumeration of each element within a split span using the provided separator characters.
SplitAny<T>(ReadOnlySpan<T>, ReadOnlySpan<T>)Returns a type that allows for enumeration of each element within a split span using any of the provided elements.
StartsWith<T>(ReadOnlySpan<T>, T, IEqualityComparer<T>) StartsWith<T>(ReadOnlySpan<T>, T)Determines whether the specified value appears at the start of the span.
StartsWith<T>(ReadOnlySpan<T>, ReadOnlySpan<T>, IEqualityComparer<T>) StartsWith<T>(ReadOnlySpan<T>, ReadOnlySpan<T>)Determines whether a specified sequence appears at the start of a read-only span.
Trim<T>(ReadOnlySpan<T>, T)Removes all leading and trailing occurrences of a specified element from a read-only span.
Trim<T>(ReadOnlySpan<T>, ReadOnlySpan<T>)Removes all leading and trailing occurrences of a set of elements specified in a read-only span from a read-only span.
TrimEnd<T>(ReadOnlySpan<T>, T)Removes all trailing occurrences of a specified element from a read-only span.
TrimEnd<T>(ReadOnlySpan<T>, ReadOnlySpan<T>)Removes all trailing occurrences of a set of elements specified in a read-only span from a read-only span.
TrimStart<T>(ReadOnlySpan<T>, T)Removes all leading occurrences of a specified element from the span.
TrimStart<T>(ReadOnlySpan<T>, ReadOnlySpan<T>)Removes all leading occurrences of a set of elements specified in a read-only span from the span.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4