Class CombinedSlottedStorage<T,S extends SlottedStorage<T>>

java.lang.Object
net.fabricmc.fabric.api.transfer.v1.storage.base.CombinedStorage<T,S>
net.fabricmc.fabric.api.transfer.v1.storage.base.CombinedSlottedStorage<T,S>
Type Parameters:
T - The type of the stored resources.
S - The class of every part. ? extends Storage<T> can be used if the parts are of different types. Experimental feature, we reserve the right to remove or change it without further notice. The transfer API is a complex addition, and we want to be able to correct possible design mistakes.
All Implemented Interfaces:
Iterable<StorageView<T>>, SlottedStorage<T>, Storage<T>

@Experimental public class CombinedSlottedStorage<T,S extends SlottedStorage<T>> extends CombinedStorage<T,S> implements SlottedStorage<T>
A Storage wrapping multiple slotted storages. Same as CombinedStorage, but for SlottedStorages.