@Name(value="c10::List<c10::IValue>") @Properties(inherit=torch.class) public class GenericList extends Pointer
Pointer.CustomDeallocator, Pointer.Deallocator, Pointer.NativeDeallocator, Pointer.ReferenceCounter
Constructor and Description |
---|
GenericList(GenericList arg0) |
GenericList(Pointer p)
Pointer cast constructor.
|
GenericList(Type.TypePtr elementType)
Create a generic list with runtime type information.
|
Modifier and Type | Method and Description |
---|---|
void |
append(GenericList lst)
Appends the given list to the end of the container.
|
GenericListIterator |
begin()
Returns an iterator to the first element of the container.
|
void |
clear()
Erases all elements from the container.
|
GenericList |
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.
|
GenericListIterator |
end()
Returns an iterator to the element following the last element of the container.
|
GenericListIterator |
erase(GenericListIterator pos)
Removes the element at pos.
|
GenericListIterator |
erase(GenericListIterator first,
GenericListIterator last)
Removes the elements in the range [first, last).
|
IValue |
extract(long pos)
Moves out the element at the specified location pos and returns it, with bounds checking.
|
IValue |
get(long pos)
Returns the element at specified location pos, with bounds checking.
|
GenericListIterator |
insert(GenericListIterator pos,
IValue value)
Inserts value before pos.
|
boolean |
is(GenericList rhs)
Identity comparison.
|
void |
pop_back()
Removes the last element of the container.
|
void |
push_back(IValue value)
Appends the given element value to the end of the container.
|
GenericList |
put(GenericList 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,
IValue value)
Resizes the container to contain count elements.
|
void |
set(long pos,
IValue 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.
|
IValueVector |
vec() |
address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
public GenericList(Pointer p)
Pointer(Pointer)
.public GenericList(@ByVal Type.TypePtr elementType)
public GenericList(@Const @ByRef GenericList arg0)
@ByRef @Name(value="operator =") public GenericList put(@Const @ByRef GenericList arg0)
@ByVal public GenericList copy()
@ByVal public IValue get(long pos)
@ByVal public IValue extract(long pos)
public void set(long pos, @ByVal IValue value)
@ByVal @Cast(value="c10::List<c10::IValue>::iterator*") public GenericListIterator begin()
@ByVal @Cast(value="c10::List<c10::IValue>::iterator*") public GenericListIterator end()
public long size()
public void reserve(long new_cap)
public void clear()
@ByVal @Cast(value="c10::List<c10::IValue>::iterator*") public GenericListIterator insert(@ByVal @Cast(value="c10::List<c10::IValue>::iterator*") GenericListIterator pos, @Const @ByRef IValue value)
public void push_back(@Const @ByRef IValue value)
public void append(@ByVal GenericList lst)
@ByVal @Cast(value="c10::List<c10::IValue>::iterator*") public GenericListIterator erase(@ByVal @Cast(value="c10::List<c10::IValue>::iterator*") GenericListIterator pos)
@ByVal @Cast(value="c10::List<c10::IValue>::iterator*") public GenericListIterator erase(@ByVal @Cast(value="c10::List<c10::IValue>::iterator*") GenericListIterator first, @ByVal @Cast(value="c10::List<c10::IValue>::iterator*") GenericListIterator last)
public void pop_back()
public void resize(long count)
public void resize(long count, @Const @ByRef IValue value)
@Cast(value="bool") public boolean is(@Const @ByRef GenericList rhs)
rhs
represents the same
List object as this
.@ByVal public IValueVector 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.