[][src]Struct gdnative_common::Int32Array

pub struct Int32Array(_);

A reference-counted vector of i32 that uses Godot's pool allocator.

Methods

impl Int32Array
[src]

pub fn new() -> Int32Array
[src]

Creates an empty Int32Array.

pub fn from_variant_array(array: &VariantArray) -> Int32Array
[src]

Creates an array by trying to convert each variant.

See Variant::to_int32_array.

pub fn push(&mut self, val: i32)
[src]

Appends an element at the end of the array.

pub fn push_array(&mut self, array: &Int32Array)
[src]

Appends an Int32Array at the end of this array.

pub fn insert(&mut self, offset: i32, val: i32) -> bool
[src]

Insert a new int at a given position in the array.

pub fn invert(&mut self)
[src]

Inverts the order of the elements in the array.

pub fn remove(&mut self, idx: i32)
[src]

Removes an element at the given offset.

pub fn resize(&mut self, size: i32)
[src]

Changes the size of the array, possibly removing elements or pushing default values.

pub fn get(&self, idx: i32) -> i32
[src]

Returns a copy of the element at the given offset.

pub fn set(&mut self, idx: i32, val: i32)
[src]

Sets the value of the element at the given offset.

pub fn len(&self) -> i32
[src]

Returns the number of elements in the array.

pub fn new_ref(&self) -> Int32Array
[src]

Trait Implementations

impl<'l> From<&'l Int32Array> for Variant
[src]

impl Drop for Int32Array
[src]

impl Default for Int32Array
[src]

impl ToVariant for Int32Array
[src]

Auto Trait Implementations

impl Send for Int32Array

impl Sync for Int32Array

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]