List of usage examples for java.util Map computeIfAbsent
default V computeIfAbsent(K key, Function<? super K, ? extends V> mappingFunction)
From source file:at.gridtec.lambda4j.function.bi.obj.ObjByteToFloatFunction.java
/** * Returns a memoized (caching) version of this {@link ObjByteToFloatFunction}. Whenever it is called, the mapping * between the input parameters and the return value is preserved in a cache, making subsequent calls returning the * memoized value instead of computing the return value again. * <p>/* w w w .j av a 2s . c o m*/ * Unless the function and therefore the used cache will be garbage-collected, it will keep all memoized values * forever. * * @return A memoized (caching) version of this {@code ObjByteToFloatFunction}. * @implSpec This implementation does not allow the input parameters or return value to be {@code null} for the * resulting memoized function, as the cache used internally does not permit {@code null} keys or values. * @implNote The returned memoized function can be safely used concurrently from multiple threads which makes it * thread-safe. */ @Nonnull default ObjByteToFloatFunction<T> memoized() { if (isMemoized()) { return this; } else { final Map<Pair<T, Byte>, Float> cache = new ConcurrentHashMap<>(); final Object lock = new Object(); return (ObjByteToFloatFunction<T> & Memoized) (t, value) -> { final float returnValue; synchronized (lock) { returnValue = cache.computeIfAbsent(Pair.of(t, value), key -> applyAsFloat(key.getLeft(), key.getRight())); } return returnValue; }; } }
From source file:at.gridtec.lambda4j.function.bi.obj.ObjByteToShortFunction.java
/** * Returns a memoized (caching) version of this {@link ObjByteToShortFunction}. Whenever it is called, the mapping * between the input parameters and the return value is preserved in a cache, making subsequent calls returning the * memoized value instead of computing the return value again. * <p>//from w ww . ja v a 2 s.com * Unless the function and therefore the used cache will be garbage-collected, it will keep all memoized values * forever. * * @return A memoized (caching) version of this {@code ObjByteToShortFunction}. * @implSpec This implementation does not allow the input parameters or return value to be {@code null} for the * resulting memoized function, as the cache used internally does not permit {@code null} keys or values. * @implNote The returned memoized function can be safely used concurrently from multiple threads which makes it * thread-safe. */ @Nonnull default ObjByteToShortFunction<T> memoized() { if (isMemoized()) { return this; } else { final Map<Pair<T, Byte>, Short> cache = new ConcurrentHashMap<>(); final Object lock = new Object(); return (ObjByteToShortFunction<T> & Memoized) (t, value) -> { final short returnValue; synchronized (lock) { returnValue = cache.computeIfAbsent(Pair.of(t, value), key -> applyAsShort(key.getLeft(), key.getRight())); } return returnValue; }; } }
From source file:at.gridtec.lambda4j.function.bi.obj.ObjFloatToFloatFunction.java
/** * Returns a memoized (caching) version of this {@link ObjFloatToFloatFunction}. Whenever it is called, the mapping * between the input parameters and the return value is preserved in a cache, making subsequent calls returning the * memoized value instead of computing the return value again. * <p>/*from w w w . ja v a 2s .com*/ * Unless the function and therefore the used cache will be garbage-collected, it will keep all memoized values * forever. * * @return A memoized (caching) version of this {@code ObjFloatToFloatFunction}. * @implSpec This implementation does not allow the input parameters or return value to be {@code null} for the * resulting memoized function, as the cache used internally does not permit {@code null} keys or values. * @implNote The returned memoized function can be safely used concurrently from multiple threads which makes it * thread-safe. */ @Nonnull default ObjFloatToFloatFunction<T> memoized() { if (isMemoized()) { return this; } else { final Map<Pair<T, Float>, Float> cache = new ConcurrentHashMap<>(); final Object lock = new Object(); return (ObjFloatToFloatFunction<T> & Memoized) (t, value) -> { final float returnValue; synchronized (lock) { returnValue = cache.computeIfAbsent(Pair.of(t, value), key -> applyAsFloat(key.getLeft(), key.getRight())); } return returnValue; }; } }
From source file:at.gridtec.lambda4j.function.bi.obj.ObjFloatToLongFunction.java
/** * Returns a memoized (caching) version of this {@link ObjFloatToLongFunction}. Whenever it is called, the mapping * between the input parameters and the return value is preserved in a cache, making subsequent calls returning the * memoized value instead of computing the return value again. * <p>/*from w ww .j a va 2 s. c o m*/ * Unless the function and therefore the used cache will be garbage-collected, it will keep all memoized values * forever. * * @return A memoized (caching) version of this {@code ObjFloatToLongFunction}. * @implSpec This implementation does not allow the input parameters or return value to be {@code null} for the * resulting memoized function, as the cache used internally does not permit {@code null} keys or values. * @implNote The returned memoized function can be safely used concurrently from multiple threads which makes it * thread-safe. */ @Nonnull default ObjFloatToLongFunction<T> memoized() { if (isMemoized()) { return this; } else { final Map<Pair<T, Float>, Long> cache = new ConcurrentHashMap<>(); final Object lock = new Object(); return (ObjFloatToLongFunction<T> & Memoized) (t, value) -> { final long returnValue; synchronized (lock) { returnValue = cache.computeIfAbsent(Pair.of(t, value), key -> applyAsLong(key.getLeft(), key.getRight())); } return returnValue; }; } }
From source file:at.gridtec.lambda4j.function.bi.obj.ObjIntToIntFunction.java
/** * Returns a memoized (caching) version of this {@link ObjIntToIntFunction}. Whenever it is called, the mapping * between the input parameters and the return value is preserved in a cache, making subsequent calls returning the * memoized value instead of computing the return value again. * <p>// w w w . j a v a 2 s . c om * Unless the function and therefore the used cache will be garbage-collected, it will keep all memoized values * forever. * * @return A memoized (caching) version of this {@code ObjIntToIntFunction}. * @implSpec This implementation does not allow the input parameters or return value to be {@code null} for the * resulting memoized function, as the cache used internally does not permit {@code null} keys or values. * @implNote The returned memoized function can be safely used concurrently from multiple threads which makes it * thread-safe. */ @Nonnull default ObjIntToIntFunction<T> memoized() { if (isMemoized()) { return this; } else { final Map<Pair<T, Integer>, Integer> cache = new ConcurrentHashMap<>(); final Object lock = new Object(); return (ObjIntToIntFunction<T> & Memoized) (t, value) -> { final int returnValue; synchronized (lock) { returnValue = cache.computeIfAbsent(Pair.of(t, value), key -> applyAsInt(key.getLeft(), key.getRight())); } return returnValue; }; } }
From source file:at.gridtec.lambda4j.function.bi.obj.ObjLongToFloatFunction.java
/** * Returns a memoized (caching) version of this {@link ObjLongToFloatFunction}. Whenever it is called, the mapping * between the input parameters and the return value is preserved in a cache, making subsequent calls returning the * memoized value instead of computing the return value again. * <p>/* w w w .j av a 2s. c o m*/ * Unless the function and therefore the used cache will be garbage-collected, it will keep all memoized values * forever. * * @return A memoized (caching) version of this {@code ObjLongToFloatFunction}. * @implSpec This implementation does not allow the input parameters or return value to be {@code null} for the * resulting memoized function, as the cache used internally does not permit {@code null} keys or values. * @implNote The returned memoized function can be safely used concurrently from multiple threads which makes it * thread-safe. */ @Nonnull default ObjLongToFloatFunction<T> memoized() { if (isMemoized()) { return this; } else { final Map<Pair<T, Long>, Float> cache = new ConcurrentHashMap<>(); final Object lock = new Object(); return (ObjLongToFloatFunction<T> & Memoized) (t, value) -> { final float returnValue; synchronized (lock) { returnValue = cache.computeIfAbsent(Pair.of(t, value), key -> applyAsFloat(key.getLeft(), key.getRight())); } return returnValue; }; } }
From source file:at.gridtec.lambda4j.function.bi.obj.ObjLongToIntFunction.java
/** * Returns a memoized (caching) version of this {@link ObjLongToIntFunction}. Whenever it is called, the mapping * between the input parameters and the return value is preserved in a cache, making subsequent calls returning the * memoized value instead of computing the return value again. * <p>/*w w w . ja v a2s .co m*/ * Unless the function and therefore the used cache will be garbage-collected, it will keep all memoized values * forever. * * @return A memoized (caching) version of this {@code ObjLongToIntFunction}. * @implSpec This implementation does not allow the input parameters or return value to be {@code null} for the * resulting memoized function, as the cache used internally does not permit {@code null} keys or values. * @implNote The returned memoized function can be safely used concurrently from multiple threads which makes it * thread-safe. */ @Nonnull default ObjLongToIntFunction<T> memoized() { if (isMemoized()) { return this; } else { final Map<Pair<T, Long>, Integer> cache = new ConcurrentHashMap<>(); final Object lock = new Object(); return (ObjLongToIntFunction<T> & Memoized) (t, value) -> { final int returnValue; synchronized (lock) { returnValue = cache.computeIfAbsent(Pair.of(t, value), key -> applyAsInt(key.getLeft(), key.getRight())); } return returnValue; }; } }
From source file:at.gridtec.lambda4j.function.bi.obj.ObjLongToShortFunction.java
/** * Returns a memoized (caching) version of this {@link ObjLongToShortFunction}. Whenever it is called, the mapping * between the input parameters and the return value is preserved in a cache, making subsequent calls returning the * memoized value instead of computing the return value again. * <p>/*from w ww. j ava2s . c o m*/ * Unless the function and therefore the used cache will be garbage-collected, it will keep all memoized values * forever. * * @return A memoized (caching) version of this {@code ObjLongToShortFunction}. * @implSpec This implementation does not allow the input parameters or return value to be {@code null} for the * resulting memoized function, as the cache used internally does not permit {@code null} keys or values. * @implNote The returned memoized function can be safely used concurrently from multiple threads which makes it * thread-safe. */ @Nonnull default ObjLongToShortFunction<T> memoized() { if (isMemoized()) { return this; } else { final Map<Pair<T, Long>, Short> cache = new ConcurrentHashMap<>(); final Object lock = new Object(); return (ObjLongToShortFunction<T> & Memoized) (t, value) -> { final short returnValue; synchronized (lock) { returnValue = cache.computeIfAbsent(Pair.of(t, value), key -> applyAsShort(key.getLeft(), key.getRight())); } return returnValue; }; } }
From source file:at.gridtec.lambda4j.function.bi.obj.ObjShortToLongFunction.java
/** * Returns a memoized (caching) version of this {@link ObjShortToLongFunction}. Whenever it is called, the mapping * between the input parameters and the return value is preserved in a cache, making subsequent calls returning the * memoized value instead of computing the return value again. * <p>/*from w w w.ja v a 2s. c om*/ * Unless the function and therefore the used cache will be garbage-collected, it will keep all memoized values * forever. * * @return A memoized (caching) version of this {@code ObjShortToLongFunction}. * @implSpec This implementation does not allow the input parameters or return value to be {@code null} for the * resulting memoized function, as the cache used internally does not permit {@code null} keys or values. * @implNote The returned memoized function can be safely used concurrently from multiple threads which makes it * thread-safe. */ @Nonnull default ObjShortToLongFunction<T> memoized() { if (isMemoized()) { return this; } else { final Map<Pair<T, Short>, Long> cache = new ConcurrentHashMap<>(); final Object lock = new Object(); return (ObjShortToLongFunction<T> & Memoized) (t, value) -> { final long returnValue; synchronized (lock) { returnValue = cache.computeIfAbsent(Pair.of(t, value), key -> applyAsLong(key.getLeft(), key.getRight())); } return returnValue; }; } }
From source file:at.gridtec.lambda4j.function.bi.obj.ObjShortToShortFunction.java
/** * Returns a memoized (caching) version of this {@link ObjShortToShortFunction}. Whenever it is called, the mapping * between the input parameters and the return value is preserved in a cache, making subsequent calls returning the * memoized value instead of computing the return value again. * <p>/*w ww . java 2 s .c om*/ * Unless the function and therefore the used cache will be garbage-collected, it will keep all memoized values * forever. * * @return A memoized (caching) version of this {@code ObjShortToShortFunction}. * @implSpec This implementation does not allow the input parameters or return value to be {@code null} for the * resulting memoized function, as the cache used internally does not permit {@code null} keys or values. * @implNote The returned memoized function can be safely used concurrently from multiple threads which makes it * thread-safe. */ @Nonnull default ObjShortToShortFunction<T> memoized() { if (isMemoized()) { return this; } else { final Map<Pair<T, Short>, Short> cache = new ConcurrentHashMap<>(); final Object lock = new Object(); return (ObjShortToShortFunction<T> & Memoized) (t, value) -> { final short returnValue; synchronized (lock) { returnValue = cache.computeIfAbsent(Pair.of(t, value), key -> applyAsShort(key.getLeft(), key.getRight())); } return returnValue; }; } }