mirror of
https://github.com/SlimeVR/SlimeVR-Server.git
synced 2026-04-06 02:01:58 +02:00
12 lines
196 B
Java
12 lines
196 B
Java
package io.eiren.util.collections;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
public interface RemoveAtSwapList<E> extends List<E> {
|
|
|
|
public E removeAtSwap(int i);
|
|
|
|
public boolean removeAtSwap(Object object);
|
|
}
|