com.carrotsearch.hppc.procedures.DoubleCharProcedure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hppc Show documentation
Show all versions of hppc Show documentation
High Performance Primitive Collections: data structures (maps, sets, lists, stacks, queues) generated for combinations of object and primitive types to conserve JVM memory and speed up execution.
package com.carrotsearch.hppc.procedures;
/**
* A procedure that applies to double
, char
pairs.
*/
@com.carrotsearch.hppc.Generated(
date = "2018-05-21T12:24:07+0200",
value = "KTypeVTypeProcedure.java")
public interface DoubleCharProcedure {
public void apply(double key, char value);
}