public static System.Collections.Generic.Stack <TItem> Stack <TItem>(BoxedEnumerable <TItem> second) => StackImpl <TItem, BoxedEnumerable <TItem>, BoxedEnumerator <TItem> >(ref second);
public static System.Collections.Generic.LinkedList <TItem> LinkedList <TItem>(BoxedEnumerable <TItem> second) => LinkedListImpl <TItem, BoxedEnumerable <TItem>, BoxedEnumerator <TItem> >(ref second);
public static System.Collections.Generic.Queue <TItem> Queue <TItem>(BoxedEnumerable <TItem> second) => QueueImpl <TItem, BoxedEnumerable <TItem>, BoxedEnumerator <TItem> >(ref second);