@Test(expected = UnsupportedOperationException.class) @Override public void updateValue_collisions() { this.<Integer, Integer>newMap().updateValue(0, () -> 0, Functions.identity()); }
/** * Alias for identity(). Inlineable. * * @see #identity() */ public static <T> Function<T, T> getPassThru() { return Functions.identity(); }