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