Returns a Deque for the given TypedKey, building and storing it if the Deque does not currently exist.
(TypedKey<T> key)
| 147 | * Deque does not currently exist. |
| 148 | */ |
| 149 | private <T> Deque<Object> getDeque(TypedKey<T> key) |
| 150 | { |
| 151 | return map.computeIfAbsent(key, k -> new ArrayDeque<>()); |
| 152 | } |
| 153 | |
| 154 | /** |
| 155 | * Unwraps the null object, since Deque does not support null values |
no test coverage detected