ReadOnlyCollectionView<TInput, TOutput>
public struct ReadOnlyCollectionView<TInput, TOutput> : IReadOnlyCollection<TOutput>, IEnumerable<TOutput>, IEnumerable, IEquatable<ReadOnlyCollectionView<TInput, TOutput>>
Represents lazily converted read-only collection.
Count of items in the collection.
Initializes a new lazily converted view.
public ReadOnlyCollectionView(IReadOnlyCollection<TInput> collection, Converter<TInput, TOutput> mapper)
Initializes a new lazily converted view.
Determines whether two collections are same.
public static bool op_Inequality(ref ReadOnlyCollectionView first, ref ReadOnlyCollectionView second)
Determines whether two collections are not same.
Determines whether two converted collections are same.
Returns enumerator over converted items.