Pushes a new value onto the Deque for the given TypedKey. @param key The TypeKey for which the given value should be pushed onto the Deque @param value The value to be pushed onto the Deque for the given TypeKey @param The format of the value to be pu
(TypedKey<T> key, T value)
| 58 | * The format of the value to be put into the Deque |
| 59 | */ |
| 60 | public <T> void push(TypedKey<T> key, T value) |
| 61 | { |
| 62 | getDeque(Objects.requireNonNull(key)).push(wrap(value)); |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Pops a value from the Deque for the given TypedKey. |