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