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

org.eclipse.collections.api.map.primitive.MutableDoubleByteMap Maven / Gradle / Ivy

There is a newer version: 12.0.0.M3
Show newest version
/*
 * Copyright (c) 2018 Goldman Sachs.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Eclipse Distribution License v. 1.0 which accompany this distribution.
 * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
 * and the Eclipse Distribution License is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 */

package org.eclipse.collections.api.map.primitive;

import org.eclipse.collections.api.DoubleIterable;
import org.eclipse.collections.api.block.function.primitive.DoubleToByteFunction;
import org.eclipse.collections.api.block.function.primitive.ByteFunction;
import org.eclipse.collections.api.block.function.primitive.ByteFunction0;
import org.eclipse.collections.api.block.function.primitive.ByteToByteFunction;
import org.eclipse.collections.api.block.function.primitive.DoubleByteToByteFunction;
import org.eclipse.collections.api.block.predicate.primitive.DoubleBytePredicate;
import org.eclipse.collections.api.tuple.primitive.DoubleBytePair;

/**
 * This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
 *
 * @since 3.0.
 */
public interface MutableDoubleByteMap extends DoubleByteMap, MutableByteValuesMap
{
    void put(double key, byte value);

    /**
     * This method allows MutableDoubleByteMap the ability to add an element in the form of DoubleBytePair.
     *
     * @see #put(double, byte)
     * @since 9.1.0
     */
    default void putPair(DoubleBytePair keyValuePair)
    {
        this.put(keyValuePair.getOne(), keyValuePair.getTwo());
    }

    void putAll(DoubleByteMap map);

    /**
     * Updates the values in-place.
     *
     * @param function that takes a key and its value and that returns a new value for this key
     * @since 10.0
     */
    void updateValues(DoubleByteToByteFunction function);

    void removeKey(double key);

    void remove(double key);

    byte removeKeyIfAbsent(double key, byte value);

    byte getIfAbsentPut(double key, byte value);

    byte getIfAbsentPut(double key, ByteFunction0 function);

    byte getIfAbsentPutWithKey(double key, DoubleToByteFunction function);

    

byte getIfAbsentPutWith(double key, ByteFunction function, P parameter); byte updateValue(double key, byte initialValueIfAbsent, ByteToByteFunction function); @Override MutableByteDoubleMap flipUniqueValues(); @Override MutableDoubleByteMap select(DoubleBytePredicate predicate); @Override MutableDoubleByteMap reject(DoubleBytePredicate predicate); MutableDoubleByteMap withKeyValue(double key, byte value); MutableDoubleByteMap withoutKey(double key); MutableDoubleByteMap withoutAllKeys(DoubleIterable keys); default MutableDoubleByteMap withAllKeyValues(Iterable keyValuePairs) { for (DoubleBytePair keyValuePair : keyValuePairs) { this.putPair(keyValuePair); } return this; } MutableDoubleByteMap asUnmodifiable(); MutableDoubleByteMap asSynchronized(); byte addToValue(double key, byte toBeAdded); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy