[−][src]Struct gdnative_core::Float32Array
A reference-counted vector of f32 that uses Godot's pool allocator.
Methods
impl Float32Array[src]
impl Float32Arraypub fn new() -> Self | [src] |
Creates an empty Float32Array.
pub fn from_variant_array(array: &VariantArray) -> Self | [src] |
Creates an array by trying to convert each variant.
See Variant::to_float32_array.
pub fn push(&mut self, val: f32) | [src] |
Appends an element at the end of the array.
pub fn push_array(&mut self, array: &Float32Array) | [src] |
Appends a Float32Array at the end of this array.
pub fn insert(&mut self, offset: i32, val: f32) -> bool | [src] |
Insert a new f32 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) -> f32 | [src] |
Returns a copy of the element at the given offset.
pub fn set(&mut self, idx: i32, val: f32) | [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) -> Float32Array | [src] |
Trait Implementations
impl ToVariant for Float32Array[src]
impl ToVariant for Float32Arrayfn to_variant(&self) -> Variant | [src] |
fn from_variant(variant: &Variant) -> Option<Self> | [src] |
impl<'l> From<&'l Float32Array> for Variant[src]
impl<'l> From<&'l Float32Array> for Variantfn from(val: &'l Float32Array) -> Variant | [src] |
impl Drop for Float32Array[src]
impl Drop for Float32Arrayimpl Default for Float32Array[src]
impl Default for Float32ArrayAuto Trait Implementations
impl Send for Float32Array
impl Send for Float32Arrayimpl Sync for Float32Array
impl Sync for Float32ArrayBlanket Implementations
impl<T> From for T[src]
impl<T> From for Timpl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error> | [src] |
impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T | [src] |
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, 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.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error> | [src] |
impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId | [src] |