package com.carrotsearch.hppc;
/**
* Marker interface for containers that can check if they contain a given object in at least time
* O(log n) and ideally in amortized constant time O(1).
*/
@com.carrotsearch.hppc.Generated(
date = "2024-06-04T15:20:17+0200",
value = "KTypeLookupContainer.java")
public interface ObjectLookupContainer extends ObjectContainer {
public boolean contains(KType e);
}