class MemoryExtensions
Provides extension methods for for the memory- and span-related types, such as , , , and .
public static ReadOnlyMemory<char> AsMemory( string text )
Creates a new over the portion of the target string.
textThe target string.- Returns The read-only character memory representation of the string, or if is .
public static ReadOnlyMemory<char> AsMemory( string text, Index startIndex )
Creates a new over a portion of the target string starting at a specified index.
textThe target string.startIndexThe index at which to begin this slice.- Returns The read-only character memory representation of the string.
public static ReadOnlyMemory<char> AsMemory( string text, int start )
Creates a new over a portion of the target string starting at a specified character position.
textThe target string.startThe index at which to begin this slice.- Returns The read-only character memory representation of the string, or if is .
public static ReadOnlyMemory<char> AsMemory( string text, int start, int length )
Creates a new over a portion of the target string beginning at a specified position with a length.
textThe target string.startThe index at which to begin this slice.lengthThe desired length for the slice.- Returns The read-only character memory representation of the string, or if is .
public static ReadOnlyMemory<char> AsMemory( string text, Range range )
Creates a new over a specified range of the target string.
textThe target string.rangeThe range that indicates the start and length of the sliced string.- Returns The read-only character memory representation of the string.
public static ReadOnlySpan<char> AsSpan( string text )
Creates a new read-only span over a portion of the target string from a specified position for a specified number of characters.
textThe target string.- Returns The read-only span representation of the string.
public static ReadOnlySpan<char> AsSpan( string text, int start )
Creates a new read-only span over a portion of the target string from a specified position to the end of the string.
textThe target string.startThe index at which to begin this slice.- Returns The read-only span representation of the string.
public static ReadOnlySpan<char> AsSpan( string text, int start, int length )
Creates a new read-only span over a string.
textThe target string.startThe index at which to begin this slice.lengthThe desired length for the slice.- Returns The read-only span representation of the string.
public static int Count( ReadOnlySpan<T> span, T value )
😔 No documentation found.
public static int Count( Span<T> span, T value )
😔 No documentation found.
public static int SplitAny( ReadOnlySpan<char> source, Span<Range> destination, ReadOnlySpan<string> separators, StringSplitOptions options = None )
😔 No documentation found.
public static int SplitAny( ReadOnlySpan<char> source, Span<Range> destination, ReadOnlySpan<char> separators, StringSplitOptions options = None )
😔 No documentation found.
public static int Split( ReadOnlySpan<char> source, Span<Range> destination, ReadOnlySpan<char> separator, StringSplitOptions options = None )
😔 No documentation found.
public static int Count( ReadOnlySpan<T> span, ReadOnlySpan<T> value )
😔 No documentation found.
public static int Split( ReadOnlySpan<char> source, Span<Range> destination, char separator, StringSplitOptions options = None )
😔 No documentation found.
public static MemoryExtensions.SpanSplitEnumerator<T> SplitAny( ReadOnlySpan<T> source, SearchValues<T> separators )
😔 No documentation found.
public static MemoryExtensions.SpanSplitEnumerator<T> SplitAny( ReadOnlySpan<T> source, ReadOnlySpan<T> separators )
😔 No documentation found.
public static MemoryExtensions.SpanSplitEnumerator<T> Split( ReadOnlySpan<T> source, ReadOnlySpan<T> separator )
😔 No documentation found.
public static int Count( Span<T> span, ReadOnlySpan<T> value )
😔 No documentation found.
public static int CommonPrefixLength( ReadOnlySpan<T> span, ReadOnlySpan<T> other, IEqualityComparer<T> comparer )
😔 No documentation found.
public static bool TryWrite( Span<char> destination, IFormatProvider provider, CompositeFormat format, ref int charsWritten, TArg0 arg0, TArg1 arg1, TArg2 arg2 )
😔 No documentation found.
public static bool TryWrite( Span<char> destination, IFormatProvider provider, ref MemoryExtensions.TryWriteInterpolatedStringHandler handler, ref int charsWritten )
😔 No documentation found.
public static bool TryWrite( Span<char> destination, IFormatProvider provider, CompositeFormat format, ref int charsWritten, TArg0 arg0 )
😔 No documentation found.
public static bool TryWrite( Span<char> destination, IFormatProvider provider, CompositeFormat format, ref int charsWritten, TArg0 arg0, TArg1 arg1 )
😔 No documentation found.
public static MemoryExtensions.SpanSplitEnumerator<T> Split( ReadOnlySpan<T> source, T separator )
😔 No documentation found.
public static bool TryWrite( Span<char> destination, IFormatProvider provider, CompositeFormat format, ref int charsWritten, object[] args )
😔 No documentation found.
public static bool TryWrite( Span<char> destination, IFormatProvider provider, CompositeFormat format, ref int charsWritten, ReadOnlySpan<object> args )
😔 No documentation found.
public static bool IsWhiteSpace( ReadOnlySpan<char> span )
😔 No documentation found.
public static bool Contains( ReadOnlySpan<char> span, ReadOnlySpan<char> value, StringComparison comparisonType )
😔 No documentation found.
public static bool Equals( ReadOnlySpan<char> span, ReadOnlySpan<char> other, StringComparison comparisonType )
😔 No documentation found.
public static int CompareTo( ReadOnlySpan<char> span, ReadOnlySpan<char> other, StringComparison comparisonType )
😔 No documentation found.
public static int IndexOf( ReadOnlySpan<char> span, ReadOnlySpan<char> value, StringComparison comparisonType )
😔 No documentation found.
public static bool TryWrite( Span<char> destination, ref MemoryExtensions.TryWriteInterpolatedStringHandler handler, ref int charsWritten )
😔 No documentation found.
public static int ToLower( ReadOnlySpan<char> source, Span<char> destination, CultureInfo culture )
😔 No documentation found.
public static void Replace( ReadOnlySpan<T> source, Span<T> destination, T oldValue, T newValue )
😔 No documentation found.
public static Memory<T> AsMemory( T[] array, Range range )
😔 No documentation found.
public static Memory<T> AsMemory( ArraySegment<T> segment, int start )
😔 No documentation found.
public static Memory<T> AsMemory( ArraySegment<T> segment, int start, int length )
😔 No documentation found.
public static void CopyTo( T[] source, Span<T> destination )
😔 No documentation found.
public static void CopyTo( T[] source, Memory<T> destination )
😔 No documentation found.
public static bool Overlaps( Span<T> span, ReadOnlySpan<T> other )
😔 No documentation found.
public static bool Overlaps( Span<T> span, ReadOnlySpan<T> other, ref int elementOffset )
😔 No documentation found.
public static bool Overlaps( ReadOnlySpan<T> span, ReadOnlySpan<T> other )
😔 No documentation found.
public static bool Overlaps( ReadOnlySpan<T> span, ReadOnlySpan<T> other, ref int elementOffset )
😔 No documentation found.
public static int BinarySearch( Span<T> span, IComparable<T> comparable )
😔 No documentation found.
public static int BinarySearch( Span<T> span, TComparable comparable )
😔 No documentation found.
public static int BinarySearch( Span<T> span, T value, TComparer comparer )
😔 No documentation found.
public static int BinarySearch( ReadOnlySpan<T> span, IComparable<T> comparable )
😔 No documentation found.
public static int BinarySearch( ReadOnlySpan<T> span, TComparable comparable )
😔 No documentation found.
public static int BinarySearch( ReadOnlySpan<T> span, T value, TComparer comparer )
😔 No documentation found.
public static void Sort( Span<T> span )
😔 No documentation found.
public static void Sort( Span<T> span, TComparer comparer )
😔 No documentation found.
public static void Sort( Span<T> span, Comparison<T> comparison )
😔 No documentation found.
public static void Sort( Span<TKey> keys, Span<TValue> items )
😔 No documentation found.
public static void Sort( Span<TKey> keys, Span<TValue> items, TComparer comparer )
😔 No documentation found.
public static void Sort( Span<TKey> keys, Span<TValue> items, Comparison<TKey> comparison )
😔 No documentation found.
public static void Replace( Span<T> span, T oldValue, T newValue )
😔 No documentation found.
public static int LastIndexOf( ReadOnlySpan<char> span, ReadOnlySpan<char> value, StringComparison comparisonType )
😔 No documentation found.
public static int CommonPrefixLength( Span<T> span, ReadOnlySpan<T> other )
😔 No documentation found.
public static int CommonPrefixLength( ReadOnlySpan<T> span, ReadOnlySpan<T> other )
😔 No documentation found.
public static int CommonPrefixLength( Span<T> span, ReadOnlySpan<T> other, IEqualityComparer<T> comparer )
😔 No documentation found.
public static bool StartsWith( ReadOnlySpan<char> span, ReadOnlySpan<char> value, StringComparison comparisonType )
😔 No documentation found.
public static Span<T> TrimStart( Span<T> span, ReadOnlySpan<T> trimElements )
😔 No documentation found.
public static ReadOnlySpan<T> Trim( ReadOnlySpan<T> span, ReadOnlySpan<T> trimElements )
😔 No documentation found.
public static ReadOnlySpan<T> TrimStart( ReadOnlySpan<T> span, ReadOnlySpan<T> trimElements )
😔 No documentation found.
public static ReadOnlySpan<T> TrimEnd( ReadOnlySpan<T> span, ReadOnlySpan<T> trimElements )
😔 No documentation found.
public static Memory<char> Trim( Memory<char> memory )
😔 No documentation found.
public static Memory<char> TrimStart( Memory<char> memory )
😔 No documentation found.
public static Memory<char> TrimEnd( Memory<char> memory )
😔 No documentation found.
public static ReadOnlyMemory<char> Trim( ReadOnlyMemory<char> memory )
😔 No documentation found.
public static ReadOnlyMemory<char> TrimStart( ReadOnlyMemory<char> memory )
😔 No documentation found.
public static ReadOnlyMemory<char> TrimEnd( ReadOnlyMemory<char> memory )
😔 No documentation found.
public static ReadOnlySpan<char> Trim( ReadOnlySpan<char> span )
😔 No documentation found.
public static ReadOnlySpan<char> TrimStart( ReadOnlySpan<char> span )
😔 No documentation found.
public static ReadOnlySpan<char> TrimEnd( ReadOnlySpan<char> span )
😔 No documentation found.
public static ReadOnlySpan<char> Trim( ReadOnlySpan<char> span, char trimChar )
😔 No documentation found.
public static ReadOnlySpan<char> TrimStart( ReadOnlySpan<char> span, char trimChar )
😔 No documentation found.
public static ReadOnlySpan<char> TrimEnd( ReadOnlySpan<char> span, char trimChar )
😔 No documentation found.
public static ReadOnlySpan<char> Trim( ReadOnlySpan<char> span, ReadOnlySpan<char> trimChars )
😔 No documentation found.
public static ReadOnlySpan<char> TrimStart( ReadOnlySpan<char> span, ReadOnlySpan<char> trimChars )
😔 No documentation found.
public static ReadOnlySpan<char> TrimEnd( ReadOnlySpan<char> span, ReadOnlySpan<char> trimChars )
😔 No documentation found.
public static Span<char> Trim( Span<char> span )
😔 No documentation found.
public static Span<char> TrimStart( Span<char> span )
😔 No documentation found.
public static Span<char> TrimEnd( Span<char> span )
😔 No documentation found.
public Type GetType( )
😔 No documentation found.
public string ToString( )
😔 No documentation found.
public static Span<T> TrimEnd( Span<T> span, ReadOnlySpan<T> trimElements )
😔 No documentation found.
public int GetHashCode( )
😔 No documentation found.
public static Span<T> Trim( Span<T> span, ReadOnlySpan<T> trimElements )
😔 No documentation found.
public static int ToUpper( ReadOnlySpan<char> source, Span<char> destination, CultureInfo culture )
😔 No documentation found.
public static int ToUpperInvariant( ReadOnlySpan<char> source, Span<char> destination )
😔 No documentation found.
public static bool EndsWith( ReadOnlySpan<char> span, ReadOnlySpan<char> value, StringComparison comparisonType )
😔 No documentation found.
public static Memory<T> AsMemory( ArraySegment<T> segment )
😔 No documentation found.
public static SpanRuneEnumerator EnumerateRunes( ReadOnlySpan<char> span )
😔 No documentation found.
public static SpanRuneEnumerator EnumerateRunes( Span<char> span )
😔 No documentation found.
public static SpanLineEnumerator EnumerateLines( ReadOnlySpan<char> span )
😔 No documentation found.
public static SpanLineEnumerator EnumerateLines( Span<char> span )
😔 No documentation found.
public static Memory<T> Trim( Memory<T> memory, T trimElement )
😔 No documentation found.
public static Memory<T> TrimStart( Memory<T> memory, T trimElement )
😔 No documentation found.
public static Memory<T> TrimEnd( Memory<T> memory, T trimElement )
😔 No documentation found.
public static ReadOnlyMemory<T> Trim( ReadOnlyMemory<T> memory, T trimElement )
😔 No documentation found.
public static int ToLowerInvariant( ReadOnlySpan<char> source, Span<char> destination )
😔 No documentation found.
public static ReadOnlyMemory<T> TrimStart( ReadOnlyMemory<T> memory, T trimElement )
😔 No documentation found.
public static Span<T> Trim( Span<T> span, T trimElement )
😔 No documentation found.
public static Span<T> TrimStart( Span<T> span, T trimElement )
😔 No documentation found.
public static Span<T> TrimEnd( Span<T> span, T trimElement )
😔 No documentation found.
public static ReadOnlySpan<T> Trim( ReadOnlySpan<T> span, T trimElement )
😔 No documentation found.
public static ReadOnlySpan<T> TrimStart( ReadOnlySpan<T> span, T trimElement )
😔 No documentation found.
public static ReadOnlySpan<T> TrimEnd( ReadOnlySpan<T> span, T trimElement )
😔 No documentation found.
public static Memory<T> Trim( Memory<T> memory, ReadOnlySpan<T> trimElements )
😔 No documentation found.
public static Memory<T> TrimStart( Memory<T> memory, ReadOnlySpan<T> trimElements )
😔 No documentation found.
public static Memory<T> TrimEnd( Memory<T> memory, ReadOnlySpan<T> trimElements )
😔 No documentation found.
public static ReadOnlyMemory<T> Trim( ReadOnlyMemory<T> memory, ReadOnlySpan<T> trimElements )
😔 No documentation found.
public static ReadOnlyMemory<T> TrimStart( ReadOnlyMemory<T> memory, ReadOnlySpan<T> trimElements )
😔 No documentation found.
public static ReadOnlyMemory<T> TrimEnd( ReadOnlyMemory<T> memory, T trimElement )
😔 No documentation found.
public static ReadOnlyMemory<T> TrimEnd( ReadOnlyMemory<T> memory, ReadOnlySpan<T> trimElements )
😔 No documentation found.
public static Span<T> AsSpan( ArraySegment<T> segment, Range range )
😔 No documentation found.
public static bool ContainsAnyExcept( ReadOnlySpan<T> span, ReadOnlySpan<T> values )
😔 No documentation found.
public static bool ContainsAnyInRange( ReadOnlySpan<T> span, T lowInclusive, T highInclusive )
😔 No documentation found.
public static bool ContainsAnyExceptInRange( ReadOnlySpan<T> span, T lowInclusive, T highInclusive )
😔 No documentation found.
public static int IndexOf( Span<T> span, T value )
😔 No documentation found.
public static int IndexOf( Span<T> span, ReadOnlySpan<T> value )
😔 No documentation found.
public static int LastIndexOf( Span<T> span, T value )
😔 No documentation found.
public static int LastIndexOf( Span<T> span, ReadOnlySpan<T> value )
😔 No documentation found.
public static int IndexOfAnyExcept( Span<T> span, T value )
😔 No documentation found.
public static int IndexOfAnyExcept( Span<T> span, T value0, T value1 )
😔 No documentation found.
public static int IndexOfAnyExcept( Span<T> span, T value0, T value1, T value2 )
😔 No documentation found.
public static int IndexOfAnyExcept( Span<T> span, ReadOnlySpan<T> values )
😔 No documentation found.
public static int IndexOfAnyExcept( Span<T> span, SearchValues<T> values )
😔 No documentation found.
public static int IndexOfAnyExcept( ReadOnlySpan<T> span, T value )
😔 No documentation found.
public static int IndexOfAnyExcept( ReadOnlySpan<T> span, T value0, T value1 )
😔 No documentation found.
public static int IndexOfAnyExcept( ReadOnlySpan<T> span, T value0, T value1, T value2 )
😔 No documentation found.
public static int IndexOfAnyExcept( ReadOnlySpan<T> span, ReadOnlySpan<T> values )
😔 No documentation found.
public static int IndexOfAnyExcept( ReadOnlySpan<T> span, SearchValues<T> values )
😔 No documentation found.
public static int LastIndexOfAnyExcept( Span<T> span, T value )
😔 No documentation found.
public static int LastIndexOfAnyExcept( Span<T> span, T value0, T value1 )
😔 No documentation found.
public static int LastIndexOfAnyExcept( Span<T> span, T value0, T value1, T value2 )
😔 No documentation found.
public static int LastIndexOfAnyExcept( Span<T> span, ReadOnlySpan<T> values )
😔 No documentation found.
public static int LastIndexOfAnyExcept( Span<T> span, SearchValues<T> values )
😔 No documentation found.
public static int LastIndexOfAnyExcept( ReadOnlySpan<T> span, T value )
😔 No documentation found.
public static int LastIndexOfAnyExcept( ReadOnlySpan<T> span, T value0, T value1 )
😔 No documentation found.
public static bool ContainsAnyExcept( ReadOnlySpan<T> span, SearchValues<T> values )
😔 No documentation found.
public static Memory<T> AsMemory( T[] array, int start, int length )
😔 No documentation found.
public static bool ContainsAnyExcept( ReadOnlySpan<T> span, T value0, T value1, T value2 )
😔 No documentation found.
public static Span<T> AsSpan( T[] array, int start )
😔 No documentation found.
public static Span<T> AsSpan( T[] array, Index startIndex )
😔 No documentation found.
public static Span<T> AsSpan( T[] array, Range range )
😔 No documentation found.
public static ReadOnlySpan<char> AsSpan( string text, Index startIndex )
😔 No documentation found.
public static ReadOnlySpan<char> AsSpan( string text, Range range )
😔 No documentation found.
public static bool Contains( Span<T> span, T value )
😔 No documentation found.
public static bool Contains( ReadOnlySpan<T> span, T value )
😔 No documentation found.
public static bool ContainsAny( Span<T> span, T value0, T value1 )
😔 No documentation found.
public static bool ContainsAny( Span<T> span, T value0, T value1, T value2 )
😔 No documentation found.
public static bool ContainsAny( Span<T> span, ReadOnlySpan<T> values )
😔 No documentation found.
public static bool ContainsAny( Span<T> span, SearchValues<T> values )
😔 No documentation found.
public static bool ContainsAny( Span<char> span, SearchValues<string> values )
😔 No documentation found.
public static int LastIndexOfAnyExcept( ReadOnlySpan<T> span, T value0, T value1, T value2 )
😔 No documentation found.
public static bool ContainsAnyExcept( Span<T> span, T value )
😔 No documentation found.
public static bool ContainsAnyExcept( Span<T> span, T value0, T value1, T value2 )
😔 No documentation found.
public static bool ContainsAnyExcept( Span<T> span, ReadOnlySpan<T> values )
😔 No documentation found.
public static bool ContainsAnyExcept( Span<T> span, SearchValues<T> values )
😔 No documentation found.
public static bool ContainsAnyInRange( Span<T> span, T lowInclusive, T highInclusive )
😔 No documentation found.
public static bool ContainsAnyExceptInRange( Span<T> span, T lowInclusive, T highInclusive )
😔 No documentation found.
public static bool ContainsAny( ReadOnlySpan<T> span, T value0, T value1 )
😔 No documentation found.
public static bool ContainsAny( ReadOnlySpan<T> span, T value0, T value1, T value2 )
😔 No documentation found.
public static bool ContainsAny( ReadOnlySpan<T> span, ReadOnlySpan<T> values )
😔 No documentation found.
public static bool ContainsAny( ReadOnlySpan<T> span, SearchValues<T> values )
😔 No documentation found.
public static bool ContainsAny( ReadOnlySpan<char> span, SearchValues<string> values )
😔 No documentation found.
public static bool ContainsAnyExcept( ReadOnlySpan<T> span, T value )
😔 No documentation found.
public static bool ContainsAnyExcept( Span<T> span, T value0, T value1 )
😔 No documentation found.
public static bool ContainsAnyExcept( ReadOnlySpan<T> span, T value0, T value1 )
😔 No documentation found.
public static int LastIndexOfAnyExcept( ReadOnlySpan<T> span, ReadOnlySpan<T> values )
😔 No documentation found.
public static int LastIndexOfAny( Span<T> span, SearchValues<T> values )
😔 No documentation found.
public static int LastIndexOfAny( ReadOnlySpan<T> span, T value0, T value1, T value2 )
😔 No documentation found.
public static int LastIndexOfAny( ReadOnlySpan<T> span, ReadOnlySpan<T> values )
😔 No documentation found.
public static int LastIndexOfAny( ReadOnlySpan<T> span, SearchValues<T> values )
😔 No documentation found.
public static bool SequenceEqual( ReadOnlySpan<T> span, ReadOnlySpan<T> other )
😔 No documentation found.
public static bool SequenceEqual( Span<T> span, ReadOnlySpan<T> other, IEqualityComparer<T> comparer = null )
😔 No documentation found.
public static bool SequenceEqual( ReadOnlySpan<T> span, ReadOnlySpan<T> other, IEqualityComparer<T> comparer = null )
😔 No documentation found.
public static int SequenceCompareTo( ReadOnlySpan<T> span, ReadOnlySpan<T> other )
😔 No documentation found.
public static bool StartsWith( Span<T> span, ReadOnlySpan<T> value )
😔 No documentation found.
public static bool StartsWith( ReadOnlySpan<T> span, ReadOnlySpan<T> value )
😔 No documentation found.
public static bool EndsWith( Span<T> span, ReadOnlySpan<T> value )
😔 No documentation found.
public static bool EndsWith( ReadOnlySpan<T> span, ReadOnlySpan<T> value )
😔 No documentation found.
public static bool StartsWith( ReadOnlySpan<T> span, T value )
😔 No documentation found.
public static bool EndsWith( ReadOnlySpan<T> span, T value )
😔 No documentation found.
public static void Reverse( Span<T> span )
😔 No documentation found.
public static Span<T> AsSpan( T[] array )
😔 No documentation found.
public static Span<T> AsSpan( T[] array, int start, int length )
😔 No documentation found.
public static Span<T> AsSpan( ArraySegment<T> segment )
😔 No documentation found.
public static Span<T> AsSpan( ArraySegment<T> segment, int start )
😔 No documentation found.
public static Span<T> AsSpan( ArraySegment<T> segment, Index startIndex )
😔 No documentation found.
public static Span<T> AsSpan( ArraySegment<T> segment, int start, int length )
😔 No documentation found.
public bool Equals( object obj )
😔 No documentation found.
public static Memory<T> AsMemory( T[] array )
😔 No documentation found.
public static Memory<T> AsMemory( T[] array, int start )
😔 No documentation found.
public static int LastIndexOfAny( ReadOnlySpan<T> span, T value0, T value1 )
😔 No documentation found.
public static Memory<T> AsMemory( T[] array, Index startIndex )
😔 No documentation found.
public static int LastIndexOfAny( Span<T> span, ReadOnlySpan<T> values )
😔 No documentation found.
public static int IndexOfAnyInRange( Span<T> span, T lowInclusive, T highInclusive )
😔 No documentation found.
public static int IndexOfAnyInRange( ReadOnlySpan<T> span, T lowInclusive, T highInclusive )
😔 No documentation found.
public static int IndexOfAnyExceptInRange( Span<T> span, T lowInclusive, T highInclusive )
😔 No documentation found.
public static int IndexOfAnyExceptInRange( ReadOnlySpan<T> span, T lowInclusive, T highInclusive )
😔 No documentation found.
public static int LastIndexOfAnyInRange( Span<T> span, T lowInclusive, T highInclusive )
😔 No documentation found.
public static int LastIndexOfAnyInRange( ReadOnlySpan<T> span, T lowInclusive, T highInclusive )
😔 No documentation found.
public static int LastIndexOfAnyExceptInRange( Span<T> span, T lowInclusive, T highInclusive )
😔 No documentation found.
public static int LastIndexOfAnyExceptInRange( ReadOnlySpan<T> span, T lowInclusive, T highInclusive )
😔 No documentation found.
public static bool SequenceEqual( Span<T> span, ReadOnlySpan<T> other )
😔 No documentation found.
public static int SequenceCompareTo( Span<T> span, ReadOnlySpan<T> other )
😔 No documentation found.
public static int IndexOf( ReadOnlySpan<T> span, T value )
😔 No documentation found.
public static int IndexOf( ReadOnlySpan<T> span, ReadOnlySpan<T> value )
😔 No documentation found.
public static int LastIndexOfAnyExcept( ReadOnlySpan<T> span, SearchValues<T> values )
😔 No documentation found.
public static int LastIndexOf( ReadOnlySpan<T> span, T value )
😔 No documentation found.
public static int IndexOfAny( Span<T> span, T value0, T value1 )
😔 No documentation found.
public static int IndexOfAny( Span<T> span, T value0, T value1, T value2 )
😔 No documentation found.
public static int IndexOfAny( Span<T> span, ReadOnlySpan<T> values )
😔 No documentation found.
public static int IndexOfAny( Span<T> span, SearchValues<T> values )
😔 No documentation found.
public static int IndexOfAny( Span<char> span, SearchValues<string> values )
😔 No documentation found.
public static int IndexOfAny( ReadOnlySpan<T> span, T value0, T value1 )
😔 No documentation found.
public static int IndexOfAny( ReadOnlySpan<T> span, T value0, T value1, T value2 )
😔 No documentation found.
public static int IndexOfAny( ReadOnlySpan<T> span, ReadOnlySpan<T> values )
😔 No documentation found.
public static int IndexOfAny( ReadOnlySpan<T> span, SearchValues<T> values )
😔 No documentation found.
public static int IndexOfAny( ReadOnlySpan<char> span, SearchValues<string> values )
😔 No documentation found.
public static int LastIndexOfAny( Span<T> span, T value0, T value1 )
😔 No documentation found.
public static int LastIndexOf( ReadOnlySpan<T> span, ReadOnlySpan<T> value )
😔 No documentation found.
public static int LastIndexOfAny( Span<T> span, T value0, T value1, T value2 )
😔 No documentation found.