pub struct vtkLongArray(/* private fields */);Expand description
dynamic, self-adjusting array of long
vtkLongArray is an array of values of type long. It provides methods for insertion and retrieval of values and will automatically resize itself to hold new data.
The C++ standard does not define the exact size of the long type, so use of this type directly is discouraged. If an array of 32 bit integers is needed, prefer vtkTypeInt32Array to this class. If an array of 64 bit integers is needed, prefer vtkTypeInt64Array to this class.
Implementations§
Source§impl vtkLongArray
impl vtkLongArray
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkLongArray wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkLongArray
impl Default for vtkLongArray
Auto Trait Implementations§
impl Freeze for vtkLongArray
impl RefUnwindSafe for vtkLongArray
impl !Send for vtkLongArray
impl !Sync for vtkLongArray
impl Unpin for vtkLongArray
impl UnwindSafe for vtkLongArray
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more