Uses of Class
cern.colt.list.AbstractLongList

Packages that use AbstractLongList
Package
Description
Resizable lists holding objects or primitive data types such as int, double, etc.
List adapters that make Colt lists compatible with the JDK 1.2 Collections Framework.
  • Uses of AbstractLongList in cern.colt.list

    Modifier and Type
    Class
    Description
    class 
    Resizable compressed list holding numbers; based on the fact that a number from a large list with few distinct values need not take more than log(distinctValues) bits; implemented with a MinMaxNumberList.
    class 
    Resizable list holding long elements; implemented with arrays.
    class 
    Resizable compressed list holding numbers; based on the fact that a value in a given interval need not take more than log(max-min+1) bits; implemented with a cern.colt.bitvector.BitVector.
    class 
    Resizable list holding long elements; implemented with arrays; not efficient; just to demonstrate which methods you must override to implement a fully functional list.
    Methods in cern.colt.list that return AbstractLongList
    Modifier and Type
    Method
    Description
    AbstractLongList.elements(long[] elements)
    Sets the receiver's elements to be the specified array.
    LongArrayList.elements(long[] elements)
    Sets the receiver's elements to be the specified array (not a copy of it).
    AbstractLongList.partFromTo(int from, int to)
    Returns a new list of the part of the receiver between from, inclusive, and to, inclusive.
    LongArrayList.partFromTo(int from, int to)
    Returns a new list of the part of the receiver between from, inclusive, and to, inclusive.
    AbstractLongList.times(int times)
    Returns a list which is a concatenation of times times the receiver.
    Methods in cern.colt.list with parameters of type AbstractLongList
    Modifier and Type
    Method
    Description
    void
    AbstractLongList.addAllOfFromTo(AbstractLongList other, int from, int to)
    Appends the part of the specified list between from (inclusive) and to (inclusive) to the receiver.
    void
    AbstractLongList.beforeInsertAllOfFromTo(int index, AbstractLongList other, int from, int to)
    Inserts the part of the specified list between otherFrom (inclusive) and otherTo (inclusive) before the specified position into the receiver.
    boolean
    AbstractLongList.removeAll(AbstractLongList other)
    Removes from the receiver all elements that are contained in the specified list.
    boolean
    LongArrayList.removeAll(AbstractLongList other)
    Removes from the receiver all elements that are contained in the specified list.
    void
    AbstractLongList.replaceFromToWithFrom(int from, int to, AbstractLongList other, int otherFrom)
    Replaces a number of elements in the receiver with the same number of elements of another list.
    void
    LongArrayList.replaceFromToWithFrom(int from, int to, AbstractLongList other, int otherFrom)
    Replaces a number of elements in the receiver with the same number of elements of another list.
    void
    AbstractLongList.replaceFromToWithFromTo(int from, int to, AbstractLongList other, int otherFrom, int otherTo)
    Replaces the part between from (inclusive) and to (inclusive) with the other list's part between otherFrom and otherTo.
    boolean
    AbstractLongList.retainAll(AbstractLongList other)
    Retains (keeps) only the elements in the receiver that are contained in the specified other list.
    boolean
    LongArrayList.retainAll(AbstractLongList other)
    Retains (keeps) only the elements in the receiver that are contained in the specified other list.
  • Uses of AbstractLongList in cern.colt.list.adapter

    Modifier and Type
    Field
    Description
    LongListAdapter.content
     
    Constructors in cern.colt.list.adapter with parameters of type AbstractLongList
    Modifier
    Constructor
    Description
     
    Constructs a list backed by the specified content list.