E
public interface IStack<E> extends Iterable<E>
List<E>
asList()
static <E> IStack<E>
of()
of(Deque<E> from)
peek()
pop()
push(E item)
int
size()
forEach, iterator, spliterator
E push(E item)
E pop()
E peek()
int size()
List<E> asList()
static <E> IStack<E> of()
static <E> IStack<E> of(Deque<E> from)
Copyright © 2022. All rights reserved.