/*
	* Copyright (C) 2002-2019 Sebastiano Vigna
	*
	* Licensed under the Apache License, Version 2.0 (the "License");
	* you may not use this file except in compliance with the License.
	* You may obtain a copy of the License at
	*
	*     http://www.apache.org/licenses/LICENSE-2.0
	*
	* Unless required by applicable law or agreed to in writing, software
	* distributed under the License is distributed on an "AS IS" BASIS,
	* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
	* See the License for the specific language governing permissions and
	* limitations under the License.
	*/
package it.unimi.dsi.fastutil.floats;
import it.unimi.dsi.fastutil.Function;
A class providing static methods and objects that do useful things with type-specific functions.
See Also:
/** * A class providing static methods and objects that do useful things with * type-specific functions. * * @see it.unimi.dsi.fastutil.Function * @see java.util.Collections */
public final class Float2ByteFunctions { private Float2ByteFunctions() { }
An immutable class representing an empty type-specific function.

This class may be useful to implement your own in case you subclass a type-specific function.

/** * An immutable class representing an empty type-specific function. * * <p> * This class may be useful to implement your own in case you subclass a * type-specific function. */
public static class EmptyFunction extends AbstractFloat2ByteFunction implements java.io.Serializable, Cloneable { private static final long serialVersionUID = -7046029254386353129L; protected EmptyFunction() { } @Override public byte get(final float k) { return ((byte) 0); } @Override public boolean containsKey(final float k) { return false; } @Override public byte defaultReturnValue() { return ((byte) 0); } @Override public void defaultReturnValue(final byte defRetValue) { throw new UnsupportedOperationException(); } @Override public int size() { return 0; } @Override public void clear() { } @Override public Object clone() { return EMPTY_FUNCTION; } @Override public int hashCode() { return 0; } @Override public boolean equals(final Object o) { if (!(o instanceof Function)) return false; return ((Function<?, ?>) o).size() == 0; } @Override public String toString() { return "{}"; } private Object readResolve() { return EMPTY_FUNCTION; } }
An empty type-specific function (immutable). It is serializable and cloneable.
/** * An empty type-specific function (immutable). It is serializable and * cloneable. */
public static final EmptyFunction EMPTY_FUNCTION = new EmptyFunction();
An immutable class representing a type-specific singleton function. Note that the default return value is still settable.

Note that albeit the function is immutable, its default return value may be changed.

This class may be useful to implement your own in case you subclass a type-specific function.

/** * An immutable class representing a type-specific singleton function. Note that * the default return value is still settable. * * <p> * Note that albeit the function is immutable, its default return value may be * changed. * * <p> * This class may be useful to implement your own in case you subclass a * type-specific function. */
public static class Singleton extends AbstractFloat2ByteFunction implements java.io.Serializable, Cloneable { private static final long serialVersionUID = -7046029254386353129L; protected final float key; protected final byte value; protected Singleton(final float key, final byte value) { this.key = key; this.value = value; } @Override public boolean containsKey(final float k) { return (Float.floatToIntBits(key) == Float.floatToIntBits(k)); } @Override public byte get(final float k) { return (Float.floatToIntBits(key) == Float.floatToIntBits(k)) ? value : defRetValue; } @Override public int size() { return 1; } @Override public Object clone() { return this; } }
Returns a type-specific immutable function containing only the specified pair. The returned function is serializable and cloneable.

Note that albeit the returned function is immutable, its default return value may be changed.

Params:
  • key – the only key of the returned function.
  • value – the only value of the returned function.
Returns:a type-specific immutable function containing just the pair &lt;key,value&gt;.
/** * Returns a type-specific immutable function containing only the specified * pair. The returned function is serializable and cloneable. * * <p> * Note that albeit the returned function is immutable, its default return value * may be changed. * * @param key * the only key of the returned function. * @param value * the only value of the returned function. * @return a type-specific immutable function containing just the pair * {@code &lt;key,value&gt;}. */
public static Float2ByteFunction singleton(final float key, byte value) { return new Singleton(key, value); }
Returns a type-specific immutable function containing only the specified pair. The returned function is serializable and cloneable.

Note that albeit the returned function is immutable, its default return value may be changed.

Params:
  • key – the only key of the returned function.
  • value – the only value of the returned function.
Returns:a type-specific immutable function containing just the pair &lt;key,value&gt;.
/** * Returns a type-specific immutable function containing only the specified * pair. The returned function is serializable and cloneable. * * <p> * Note that albeit the returned function is immutable, its default return value * may be changed. * * @param key * the only key of the returned function. * @param value * the only value of the returned function. * @return a type-specific immutable function containing just the pair * {@code &lt;key,value&gt;}. */
public static Float2ByteFunction singleton(final Float key, final Byte value) { return new Singleton((key).floatValue(), (value).byteValue()); }
A synchronized wrapper class for functions.
/** A synchronized wrapper class for functions. */
public static class SynchronizedFunction implements Float2ByteFunction, java.io.Serializable { private static final long serialVersionUID = -7046029254386353129L; protected final Float2ByteFunction function; protected final Object sync; protected SynchronizedFunction(final Float2ByteFunction f, final Object sync) { if (f == null) throw new NullPointerException(); this.function = f; this.sync = sync; } protected SynchronizedFunction(final Float2ByteFunction f) { if (f == null) throw new NullPointerException(); this.function = f; this.sync = this; }
{@inheritDoc}
Deprecated:Please use the corresponding type-specific method instead.
/** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method instead. */
@Deprecated @Override public int applyAsInt(double operand) { synchronized (sync) { return function.applyAsInt(operand); } }
{@inheritDoc}
Deprecated:Please use the corresponding type-specific method instead.
/** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method instead. */
@Deprecated @Override public Byte apply(final Float key) { synchronized (sync) { return function.apply(key); } } @Override public int size() { synchronized (sync) { return function.size(); } } @Override public byte defaultReturnValue() { synchronized (sync) { return function.defaultReturnValue(); } } @Override public void defaultReturnValue(final byte defRetValue) { synchronized (sync) { function.defaultReturnValue(defRetValue); } } @Override public boolean containsKey(final float k) { synchronized (sync) { return function.containsKey(k); } } @Deprecated @Override public boolean containsKey(final Object k) { synchronized (sync) { return function.containsKey(k); } } @Override public byte put(final float k, final byte v) { synchronized (sync) { return function.put(k, v); } } @Override public byte get(final float k) { synchronized (sync) { return function.get(k); } } @Override public byte remove(final float k) { synchronized (sync) { return function.remove(k); } } @Override public void clear() { synchronized (sync) { function.clear(); } }
{@inheritDoc}
Deprecated:Please use the corresponding type-specific method instead.
/** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method instead. */
@Deprecated @Override public Byte put(final Float k, final Byte v) { synchronized (sync) { return function.put(k, v); } }
{@inheritDoc}
Deprecated:Please use the corresponding type-specific method instead.
/** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method instead. */
@Deprecated @Override public Byte get(final Object k) { synchronized (sync) { return function.get(k); } }
{@inheritDoc}
Deprecated:Please use the corresponding type-specific method instead.
/** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method instead. */
@Deprecated @Override public Byte remove(final Object k) { synchronized (sync) { return function.remove(k); } } @Override public int hashCode() { synchronized (sync) { return function.hashCode(); } } @Override public boolean equals(final Object o) { if (o == this) return true; synchronized (sync) { return function.equals(o); } } @Override public String toString() { synchronized (sync) { return function.toString(); } } private void writeObject(java.io.ObjectOutputStream s) throws java.io.IOException { synchronized (sync) { s.defaultWriteObject(); } } }
Returns a synchronized type-specific function backed by the given type-specific function.
Params:
  • f – the function to be wrapped in a synchronized function.
See Also:
Returns:a synchronized view of the specified function.
/** * Returns a synchronized type-specific function backed by the given * type-specific function. * * @param f * the function to be wrapped in a synchronized function. * @return a synchronized view of the specified function. * @see java.util.Collections#synchronizedMap(java.util.Map) */
public static Float2ByteFunction synchronize(final Float2ByteFunction f) { return new SynchronizedFunction(f); }
Returns a synchronized type-specific function backed by the given type-specific function, using an assigned object to synchronize.
Params:
  • f – the function to be wrapped in a synchronized function.
  • sync – an object that will be used to synchronize the access to the function.
See Also:
Returns:a synchronized view of the specified function.
/** * Returns a synchronized type-specific function backed by the given * type-specific function, using an assigned object to synchronize. * * @param f * the function to be wrapped in a synchronized function. * @param sync * an object that will be used to synchronize the access to the * function. * @return a synchronized view of the specified function. * @see java.util.Collections#synchronizedMap(java.util.Map) */
public static Float2ByteFunction synchronize(final Float2ByteFunction f, final Object sync) { return new SynchronizedFunction(f, sync); }
An unmodifiable wrapper class for functions.
/** An unmodifiable wrapper class for functions. */
public static class UnmodifiableFunction extends AbstractFloat2ByteFunction implements java.io.Serializable { private static final long serialVersionUID = -7046029254386353129L; protected final Float2ByteFunction function; protected UnmodifiableFunction(final Float2ByteFunction f) { if (f == null) throw new NullPointerException(); this.function = f; } @Override public int size() { return function.size(); } @Override public byte defaultReturnValue() { return function.defaultReturnValue(); } @Override public void defaultReturnValue(final byte defRetValue) { throw new UnsupportedOperationException(); } @Override public boolean containsKey(final float k) { return function.containsKey(k); } @Override public byte put(final float k, final byte v) { throw new UnsupportedOperationException(); } @Override public byte get(final float k) { return function.get(k); } @Override public byte remove(final float k) { throw new UnsupportedOperationException(); } @Override public void clear() { throw new UnsupportedOperationException(); }
{@inheritDoc}
Deprecated:Please use the corresponding type-specific method instead.
/** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method instead. */
@Deprecated @Override public Byte put(final Float k, final Byte v) { throw new UnsupportedOperationException(); }
{@inheritDoc}
Deprecated:Please use the corresponding type-specific method instead.
/** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method instead. */
@Deprecated @Override public Byte get(final Object k) { return function.get(k); }
{@inheritDoc}
Deprecated:Please use the corresponding type-specific method instead.
/** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method instead. */
@Deprecated @Override public Byte remove(final Object k) { throw new UnsupportedOperationException(); } @Override public int hashCode() { return function.hashCode(); } @Override public boolean equals(Object o) { return o == this || function.equals(o); } @Override public String toString() { return function.toString(); } }
Returns an unmodifiable type-specific function backed by the given type-specific function.
Params:
  • f – the function to be wrapped in an unmodifiable function.
See Also:
Returns:an unmodifiable view of the specified function.
/** * Returns an unmodifiable type-specific function backed by the given * type-specific function. * * @param f * the function to be wrapped in an unmodifiable function. * @return an unmodifiable view of the specified function. * @see java.util.Collections#unmodifiableMap(java.util.Map) */
public static Float2ByteFunction unmodifiable(final Float2ByteFunction f) { return new UnmodifiableFunction(f); }
An adapter for mapping generic total functions to partial primitive functions.
/** * An adapter for mapping generic total functions to partial primitive * functions. */
public static class PrimitiveFunction implements Float2ByteFunction { protected final java.util.function.Function<? super Float, ? extends Byte> function; protected PrimitiveFunction(java.util.function.Function<? super Float, ? extends Byte> function) { this.function = function; } @Override public boolean containsKey(float key) { return function.apply(Float.valueOf(key)) != null; } @Deprecated @Override public boolean containsKey(Object key) { if (key == null) return false; return function.apply((Float) (key)) != null; } @Override public byte get(float key) { Byte v = function.apply(Float.valueOf(key)); if (v == null) return defaultReturnValue(); return (v).byteValue(); } @Deprecated @Override public Byte get(Object key) { if (key == null) return null; return function.apply((Float) key); } @Deprecated @Override public Byte put(final Float key, final Byte value) { throw new UnsupportedOperationException(); } }
Returns a (partial) type-specific function based on the given total generic function.

The returned function contains all keys which are not mapped to null. If the function already is a primitive function, it is returned without changes.

Warning: If the given function is a “widened” primitive function (e.g. an Int2IntFunction given to Short2ShortFunctions), it still is wrapped into a proxy, decreasing performance.

Params:
  • f – the function to be converted to a type-specific function.
Throws:
See Also:
Returns:a primitive view of the specified function.
Since:8.1.0
/** * Returns a (partial) type-specific function based on the given total generic * function. * <p> * The returned function contains all keys which are not mapped to {@code null}. * If the function already is a primitive function, it is returned without * changes. * <p> * <strong>Warning</strong>: If the given function is a &ldquo;widened&rdquo; * primitive function (e.g. an {@code Int2IntFunction} given to * {@code Short2ShortFunctions}), it still is wrapped into a proxy, decreasing * performance. * * @param f * the function to be converted to a type-specific function. * @return a primitive view of the specified function. * @throws NullPointerException * if {@code f} is null. * @see PrimitiveFunction * @since 8.1.0 */
public static Float2ByteFunction primitive(final java.util.function.Function<? super Float, ? extends Byte> f) { java.util.Objects.requireNonNull(f); if (f instanceof Float2ByteFunction) return (Float2ByteFunction) f; if (f instanceof java.util.function.DoubleToIntFunction) return key -> it.unimi.dsi.fastutil.SafeMath .safeIntToByte(((java.util.function.DoubleToIntFunction) f).applyAsInt(key)); return new PrimitiveFunction(f); } }