Interface Longs
-
- All Known Subinterfaces:
LongsModifiable,SortedLongs,SortedLongsModifiable
- All Known Implementing Classes:
LongsArray,SortedLongsArithmetic,SortedLongsArray
public interface Longs- Author:
- hogye
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Longscopy()long[]copyOf()long[]copyOf(int i, int c)voidcopyTo(int i, long[] dest, int iDest, int c)voidcopyTo(int i, LongBuffer dest, int c)voidcopyTo(LongBuffer dest)longfirst()booleanisEmpty()longlast()intn()Length of the sequencelongv(int i)Value at index i
-
-
-
Method Detail
-
v
long v(int i)
Value at index i
-
n
int n()
Length of the sequence
-
isEmpty
boolean isEmpty()
-
first
long first()
-
last
long last()
-
copyTo
void copyTo(int i, long[] dest, int iDest, int c)
-
copyTo
void copyTo(int i, LongBuffer dest, int c)
-
copyTo
void copyTo(LongBuffer dest)
-
copyOf
long[] copyOf(int i, int c)
-
copyOf
long[] copyOf()
-
copy
Longs copy()
-
-