Update #47 - Singleplayer lag fixes

This commit is contained in:
lax1dude
2025-01-19 13:26:27 -08:00
parent 3f5ee57068
commit 1f0d593a8c
2052 changed files with 133581 additions and 2339 deletions

View File

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