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

io.deephaven.engine.primitive.function.CharConsumer Maven / Gradle / Ivy

Go to download

Primitives: Expanding upon java.util.PrimitiveIterator and java.util.function.* for {byte, char, float, short}

There is a newer version: 0.36.1
Show newest version
package io.deephaven.engine.primitive.function;

import org.jetbrains.annotations.NotNull;

import java.util.Objects;

/**
 * Functional interface to apply an operation to a single {@code char}.
 */
@FunctionalInterface
public interface CharConsumer {

    /**
     * Apply this operation to {@code value}.
     *
     * @param value The {@code char} to operate one
     */
    void accept(char value);

    /**
     * Return a composed CharConsumer that applies {@code this} operation followed by {@code after}.
     *
     * @param after The CharConsumer to apply after applying {@code this}
     * @return A composed CharConsumer that applies {@code this} followed by {@code after}
     */
    default CharConsumer andThen(@NotNull final CharConsumer after) {
        Objects.requireNonNull(after);
        return (final char value) -> {
            accept(value);
            after.accept(value);
        };
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy