All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.unimi.dsi.fastutil.doubles.Double2IntFunctions Maven / Gradle / Ivy

Go to download

fastutil extends the Java Collections Framework by providing type-specific maps, sets, lists and priority queues with a small memory footprint and fast access and insertion; provides also big (64-bit) arrays, sets and lists, and fast, practical I/O classes for binary and text files.

There is a newer version: 8.5.15
Show newest version
/* Copyright (C) 1991-2016 Free Software Foundation, Inc.
   This file is part of the GNU C Library.

   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, see
   .  */
/* This header is separate from features.h so that the compiler can
   include it implicitly at the start of every compilation.  It must
   not itself include  or any other header that includes
    because the implicit include comes before any feature
   test macros that may be defined in a source file before it first
   explicitly includes a system header.  GCC knows the name of this
   header in order to preinclude it.  */
/* glibc's intent is to support the IEC 559 math functionality, real
   and complex.  If the GCC (4.9 and later) predefined macros
   specifying compiler intent are available, use them to determine
   whether the overall intent is to support these features; otherwise,
   presume an older compiler has intent to support these features and
   define these macros by default.  */
/* wchar_t uses Unicode 9.0.0.  Version 9.0 of the Unicode Standard is
   synchronized with ISO/IEC 10646:2014, fourth edition, plus
   Amd. 1  and Amd. 2 and 273 characters from forthcoming  10646, fifth edition.
   (Amd. 2 was published 2016-05-01,
   see https://www.iso.org/obp/ui/#iso:std:iso-iec:10646:ed-4:v1:amd:2:v1:en) */
/* We do not support C11 .  */
/* Generic definitions */
/* Assertions (useful to generate conditional code) */
/* Current type and class (and size, if applicable) */
/* Value methods */
/* Interfaces (keys) */
/* Interfaces (values) */
/* Abstract implementations (keys) */
/* Abstract implementations (values) */
/* Static containers (keys) */
/* Static containers (values) */
/* Implementations */
/* Synchronized wrappers */
/* Unmodifiable wrappers */
/* Other wrappers */
/* Methods (keys) */
/* Methods (values) */
/* Methods (keys/values) */
/* Methods that have special names depending on keys (but the special names depend on values) */
/* Equality */
/* Object/Reference-only definitions (keys) */
/* Primitive-type-only definitions (keys) */
/* Object/Reference-only definitions (values) */
/* Primitive-type-only definitions (values) */
/*		 
 * Copyright (C) 2002-2016 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.doubles;

/**
 * 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 class Double2IntFunctions {
	private Double2IntFunctions() {
	}

	/**
	 * 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. */ public static class EmptyFunction extends AbstractDouble2IntFunction implements java.io.Serializable, Cloneable { private static final long serialVersionUID = -7046029254386353129L; protected EmptyFunction() { } public int get(final double k) { return (0); } public boolean containsKey(final double k) { return false; } public int defaultReturnValue() { return (0); } public void defaultReturnValue(final int defRetValue) { throw new UnsupportedOperationException(); } /** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method * instead. */ @Deprecated @Override public Integer get(final Object k) { return null; } public int size() { return 0; } public void clear() { } private Object readResolve() { return EMPTY_FUNCTION; } public Object clone() { return EMPTY_FUNCTION; } } /** * 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. * *

* This class may be useful to implement your own in case you subclass a * type-specific function. */ public static class Singleton extends AbstractDouble2IntFunction implements java.io.Serializable, Cloneable { private static final long serialVersionUID = -7046029254386353129L; protected final double key; protected final int value; protected Singleton(final double key, final int value) { this.key = key; this.value = value; } public boolean containsKey(final double k) { return (Double.doubleToLongBits(key) == Double.doubleToLongBits(k)); } public int get(final double k) { if ((Double.doubleToLongBits(key) == Double.doubleToLongBits(k))) return value; return defRetValue; } public int size() { return 1; } 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. * * @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 * <key,value>. */ public static Double2IntFunction singleton(final double key, int 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. * * @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 * <key,value>. */ public static Double2IntFunction singleton(final Double key, final Integer value) { return new Singleton(((key).doubleValue()), ((value).intValue())); } /** A synchronized wrapper class for functions. */ public static class SynchronizedFunction extends AbstractDouble2IntFunction implements java.io.Serializable { private static final long serialVersionUID = -7046029254386353129L; protected final Double2IntFunction function; protected final Object sync; protected SynchronizedFunction(final Double2IntFunction f, final Object sync) { if (f == null) throw new NullPointerException(); this.function = f; this.sync = sync; } protected SynchronizedFunction(final Double2IntFunction f) { if (f == null) throw new NullPointerException(); this.function = f; this.sync = this; } public int size() { synchronized (sync) { return function.size(); } } public boolean containsKey(final double k) { synchronized (sync) { return function.containsKey(k); } } public int defaultReturnValue() { synchronized (sync) { return function.defaultReturnValue(); } } public void defaultReturnValue(final int defRetValue) { synchronized (sync) { function.defaultReturnValue(defRetValue); } } public int put(final double k, final int v) { synchronized (sync) { return function.put(k, v); } } public void clear() { synchronized (sync) { function.clear(); } } public String toString() { synchronized (sync) { return function.toString(); } } /** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method * instead. */ @Deprecated @Override public Integer put(final Double k, final Integer v) { synchronized (sync) { return function.put(k, v); } } /** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method * instead. */ @Deprecated @Override public Integer get(final Object k) { synchronized (sync) { return function.get(k); } } /** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method * instead. */ @Deprecated @Override public Integer remove(final Object k) { synchronized (sync) { return function.remove(k); } } @Override public int remove(final double k) { synchronized (sync) { return function.remove(k); } } @Override public int get(final double k) { synchronized (sync) { return function.get(k); } } public boolean containsKey(final Object ok) { synchronized (sync) { return function.containsKey(ok); } } } /** * 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 Double2IntFunction synchronize(final Double2IntFunction f) { return new SynchronizedFunction(f); } /** * 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 Double2IntFunction synchronize(final Double2IntFunction f, final Object sync) { return new SynchronizedFunction(f, sync); } /** An unmodifiable wrapper class for functions. */ public static class UnmodifiableFunction extends AbstractDouble2IntFunction implements java.io.Serializable { private static final long serialVersionUID = -7046029254386353129L; protected final Double2IntFunction function; protected UnmodifiableFunction(final Double2IntFunction f) { if (f == null) throw new NullPointerException(); this.function = f; } public int size() { return function.size(); } public boolean containsKey(final double k) { return function.containsKey(k); } public int defaultReturnValue() { return function.defaultReturnValue(); } public void defaultReturnValue(final int defRetValue) { throw new UnsupportedOperationException(); } public int put(final double k, final int v) { throw new UnsupportedOperationException(); } public void clear() { throw new UnsupportedOperationException(); } public String toString() { return function.toString(); } /** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method * instead. */ @Deprecated @Override public int remove(final double k) { throw new UnsupportedOperationException(); } /** * {@inheritDoc} * * @deprecated Please use the corresponding type-specific method * instead. */ @Deprecated @Override public int get(final double k) { return function.get(k); } public boolean containsKey(final Object ok) { return function.containsKey(ok); } } /** * 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 Double2IntFunction unmodifiable(final Double2IntFunction f) { return new UnmodifiableFunction(f); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy