Exemplo n.º 1
0
 public static System.Collections.Generic.Stack <TItem> Stack <TItem>(BoxedEnumerable <TItem> second)
 => StackImpl <TItem, BoxedEnumerable <TItem>, BoxedEnumerator <TItem> >(ref second);
Exemplo n.º 2
0
 public static System.Collections.Generic.LinkedList <TItem> LinkedList <TItem>(BoxedEnumerable <TItem> second)
 => LinkedListImpl <TItem, BoxedEnumerable <TItem>, BoxedEnumerator <TItem> >(ref second);
Exemplo n.º 3
0
 public static System.Collections.Generic.Queue <TItem> Queue <TItem>(BoxedEnumerable <TItem> second)
 => QueueImpl <TItem, BoxedEnumerable <TItem>, BoxedEnumerator <TItem> >(ref second);