@Name(value="c10::List<double>") @Properties(inherit=torch.class) public class DoubleList extends Pointer
Pointer.CustomDeallocator, Pointer.Deallocator, Pointer.NativeDeallocator, Pointer.ReferenceCounter
Constructor and Description |
---|
DoubleList()
Constructs an empty list.
|
DoubleList(DoubleArrayRef initial_values)
Constructs a list with some initial values.
|
DoubleList(DoubleList arg0)
Create a generic list with runtime type information.
|
DoubleList(long size)
Native array allocator.
|
DoubleList(Pointer p)
Pointer cast constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
append(DoubleList lst)
Appends the given list to the end of the container.
|
DoubleListIterator |
begin()
Returns an iterator to the first element of the container.
|
void |
clear()
Erases all elements from the container.
|
DoubleList |
copy()
Create a new List pointing to a deep copy of the same data.
|
Type.TypePtr |
elementType() |
boolean |
empty()
Checks if the container has no elements.
|
DoubleListIterator |
end()
Returns an iterator to the element following the last element of the container.
|
DoubleListIterator |
erase(DoubleListIterator pos)
Removes the element at pos.
|
DoubleListIterator |
erase(DoubleListIterator first,
DoubleListIterator last)
Removes the elements in the range [first, last).
|
double |
extract(long pos)
Moves out the element at the specified location pos and returns it, with bounds checking.
|
double |
get(long pos)
Returns the element at specified location pos, with bounds checking.
|
DoubleList |
getPointer(long i) |
DoubleListIterator |
insert(DoubleListIterator pos,
double value)
Inserts value before pos.
|
boolean |
is(DoubleList rhs)
Identity comparison.
|
void |
pop_back()
Removes the last element of the container.
|
DoubleList |
position(long position) |
void |
push_back(double value)
Appends the given element value to the end of the container.
|
DoubleList |
put(DoubleList arg0) |
void |
reserve(long new_cap)
Increase the capacity of the vector to a value that's greater or equal to new_cap.
|
void |
resize(long count)
Resizes the container to contain count elements.
|
void |
resize(long count,
double value)
Resizes the container to contain count elements.
|
void |
set(long pos,
double value)
Assigns a new value to the element at location pos.
|
long |
size()
Returns the number of elements in the container
|
void |
unsafeSetElementType(Type.TypePtr t) |
long |
use_count()
Returns the number of Lists currently pointing to this same list.
|
DoubleVector |
vec() |
address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
public DoubleList(Pointer p)
Pointer(Pointer)
.public DoubleList(long size)
Pointer.position(long)
.public DoubleList()
public DoubleList(@ByVal DoubleArrayRef initial_values)
public DoubleList(@Const @ByRef DoubleList arg0)
public DoubleList position(long position)
public DoubleList getPointer(long i)
getPointer
in class Pointer
@ByRef @Name(value="operator =") public DoubleList put(@Const @ByRef DoubleList arg0)
@ByVal public DoubleList copy()
public double get(long pos)
public double extract(long pos)
public void set(long pos, double value)
@ByVal @Cast(value="c10::List<double>::iterator*") public DoubleListIterator begin()
@ByVal @Cast(value="c10::List<double>::iterator*") public DoubleListIterator end()
public long size()
public void reserve(long new_cap)
public void clear()
@ByVal @Cast(value="c10::List<double>::iterator*") public DoubleListIterator insert(@ByVal @Cast(value="c10::List<double>::iterator*") DoubleListIterator pos, double value)
public void push_back(double value)
public void append(@ByVal DoubleList lst)
@ByVal @Cast(value="c10::List<double>::iterator*") public DoubleListIterator erase(@ByVal @Cast(value="c10::List<double>::iterator*") DoubleListIterator pos)
@ByVal @Cast(value="c10::List<double>::iterator*") public DoubleListIterator erase(@ByVal @Cast(value="c10::List<double>::iterator*") DoubleListIterator first, @ByVal @Cast(value="c10::List<double>::iterator*") DoubleListIterator last)
public void pop_back()
public void resize(long count)
public void resize(long count, double value)
@Cast(value="bool") public boolean is(@Const @ByRef DoubleList rhs)
rhs
represents the same
List object as this
.@ByVal @Cast(value="std::vector<double>*") public DoubleVector vec()
@Cast(value="size_t") public long use_count()
@ByVal public Type.TypePtr elementType()
public void unsafeSetElementType(@ByVal Type.TypePtr t)
Copyright © 2024. All rights reserved.