interface ILongBuffer extends IntSize, Iterable, ILongQueue, IntegrityCheckable { void add(long d); void addAll(Iterable l); long[] toArray(); long get(int idx); void trimToSize(); long popLast(); long last(); bool isEmpty(); L asVirtualList(); void insertAt(int idx, long[] l); }