File size: 379 Bytes
d46f4a3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package net.minecraft.util;

import java.util.function.IntConsumer;

public interface BitStorage {
    int getAndSet(int p_13517_, int p_13518_);

    void set(int p_13525_, int p_13526_);

    int get(int p_13515_);

    long[] getRaw();

    int getSize();

    int getBits();

    void getAll(IntConsumer p_13520_);

    void unpack(int[] p_198162_);

    BitStorage copy();
}