com.carrotsearch.hppc.predicates.ShortBytePredicate 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.predicates;
/**
* A predicate that applies to short
, byte
pairs.
*/
@com.carrotsearch.hppc.Generated(
date = "2021-06-08T13:12:55+0200",
value = "KTypeVTypePredicate.java")
public interface ShortBytePredicate {
public boolean apply(short key, byte value);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy