class ImmutableList<T>

in global :: System . Collections . Immutable

😔 No documentation found.


public ImmutableList<T> Sort( int index, int count, IComparer<T> comparer )

😔 No documentation found.

public void CopyTo( T[] array )

😔 No documentation found.

public void CopyTo( T[] array, int arrayIndex )

😔 No documentation found.

public void CopyTo( int index, T[] array, int arrayIndex, int count )

😔 No documentation found.

public ImmutableList<T> GetRange( int index, int count )

😔 No documentation found.

public ImmutableList<TOutput> ConvertAll( Func<T,TOutput> converter )

😔 No documentation found.

public bool Exists( Predicate<T> match )

😔 No documentation found.

public T Find( Predicate<T> match )

😔 No documentation found.

public ImmutableList<T> FindAll( Predicate<T> match )

😔 No documentation found.

public int FindIndex( Predicate<T> match )

😔 No documentation found.

public int FindIndex( int startIndex, Predicate<T> match )

😔 No documentation found.

public int FindIndex( int startIndex, int count, Predicate<T> match )

😔 No documentation found.

public void ForEach( Action<T> action )

😔 No documentation found.

public T FindLast( Predicate<T> match )

😔 No documentation found.

public int FindLastIndex( int startIndex, Predicate<T> match )

😔 No documentation found.

public int FindLastIndex( int startIndex, int count, Predicate<T> match )

😔 No documentation found.

public int IndexOf( T item, int index, int count, IEqualityComparer<T> equalityComparer )

😔 No documentation found.

public int LastIndexOf( T item, int index, int count, IEqualityComparer<T> equalityComparer )

😔 No documentation found.

public bool TrueForAll( Predicate<T> match )

😔 No documentation found.

public bool Contains( T value )

😔 No documentation found.

public int IndexOf( T value )

😔 No documentation found.

public ImmutableList<T>.Enumerator GetEnumerator( )

😔 No documentation found.

public Type GetType( )

😔 No documentation found.

public string ToString( )

😔 No documentation found.

public bool Equals( object obj )

😔 No documentation found.

public int FindLastIndex( Predicate<T> match )

😔 No documentation found.

public static ImmutableList<T> Empty

😔 No documentation found.

public ImmutableList<T> Sort( IComparer<T> comparer )

😔 No documentation found.

public ImmutableList<T> Clear( )

😔 No documentation found.

public int BinarySearch( T item )

😔 No documentation found.

public int BinarySearch( T item, IComparer<T> comparer )

😔 No documentation found.

public int BinarySearch( int index, int count, T item, IComparer<T> comparer )

😔 No documentation found.

public bool IsEmpty { get; }

😔 No documentation found.

public int Count { get; }

😔 No documentation found.

public T Item { get; }

😔 No documentation found.

public ref T ItemRef( int index )

😔 No documentation found.

public ImmutableList<T>.Builder ToBuilder( )

😔 No documentation found.

public ImmutableList<T> Add( T value )

😔 No documentation found.

public ImmutableList<T> AddRange( IEnumerable<T> items )

😔 No documentation found.

public ImmutableList<T> Insert( int index, T item )

😔 No documentation found.

public ImmutableList<T> InsertRange( int index, IEnumerable<T> items )

😔 No documentation found.

public ImmutableList<T> Remove( T value )

😔 No documentation found.

public ImmutableList<T> Remove( T value, IEqualityComparer<T> equalityComparer )

😔 No documentation found.

public ImmutableList<T> RemoveRange( int index, int count )

😔 No documentation found.

public ImmutableList<T> RemoveRange( IEnumerable<T> items )

😔 No documentation found.

public ImmutableList<T> RemoveRange( IEnumerable<T> items, IEqualityComparer<T> equalityComparer )

😔 No documentation found.

public ImmutableList<T> RemoveAt( int index )

😔 No documentation found.

public ImmutableList<T> RemoveAll( Predicate<T> match )

😔 No documentation found.

public ImmutableList<T> SetItem( int index, T value )

😔 No documentation found.

public ImmutableList<T> Replace( T oldValue, T newValue )

😔 No documentation found.

public ImmutableList<T> Replace( T oldValue, T newValue, IEqualityComparer<T> equalityComparer )

😔 No documentation found.

public ImmutableList<T> Reverse( )

😔 No documentation found.

public ImmutableList<T> Reverse( int index, int count )

😔 No documentation found.

public ImmutableList<T> Sort( )

😔 No documentation found.

public int GetHashCode( )

😔 No documentation found.

public ImmutableList<T> Sort( Comparison<T> comparison )

😔 No documentation found.