3 instantiations of ImmutableArray
System.Threading.Tasks.Dataflow (3)
Internal\ImmutableArray.cs (3)
29private static readonly ImmutableArray<T> s_empty = new ImmutableArray<T>(new T[0]); 55return new ImmutableArray<T>(newArray); 74return new ImmutableArray<T>(newArray);
12 references to ImmutableArray
System.Threading.Tasks.Dataflow (12)
Base\DataflowBlock.cs (8)
2337_observersState.Observers = ImmutableArray<IObserver<TOutput>>.Empty; 2387private ImmutableArray<IObserver<TOutput>> ResetObserverState() 2397ImmutableArray<IObserver<TOutput>> currentObservers = currentState.Observers; 2448internal ImmutableArray<IObserver<TOutput>> Observers = ImmutableArray<IObserver<TOutput>>.Empty; 2496ImmutableArray<IObserver<TOutput>> currentObservers; 2559ImmutableArray<IObserver<TOutput>> currentObservers; 2567Observers = ImmutableArray<IObserver<TOutput>>.Empty;
Internal\ImmutableArray.cs (4)
29private static readonly ImmutableArray<T> s_empty = new ImmutableArray<T>(new T[0]); 35public static ImmutableArray<T> Empty { get { return s_empty; } } 48public ImmutableArray<T> Add(T item) 61public ImmutableArray<T> Remove(T item)