public interface NativeList<T> extends List<T>
getPointer()
returns a pointer to this list, which is does not necessarily point to the
first element of the list (it depends on the list's implementation : for
instance vector
.getPointer() will return a pointer to the vector
structure's pointer, while a list created out of a pointer through Pointer.asList()
will return their storage pointer)Modifier and Type | Method and Description |
---|---|
Pointer<?> |
getPointer()
Returns a pointer to this list, which is does not necessarily point to
the first element of the list.
|
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
parallelStream, removeIf, stream
Pointer<?> getPointer()
vector
.getPointer() will return a
pointer to the vector structure's pointer, while a list created out of a
pointer through Pointer.asList()
will return their storage
pointer)Copyright © 2009-2020. All Rights Reserved.