Struct gdnative::Float32Array [] [src]

pub struct Float32Array(_);

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

Methods

impl Float32Array
[src]

[src]

Creates an empty Float32Array.

[src]

Creates an array by trying to convert each variant.

See Variant::to_float32_array.

[src]

Appends an element at the end of the array.

[src]

Appends a Float32Array at the end of this array.

[src]

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

[src]

Inverts the order of the elements in the array.

[src]

Removes an element at the given offset.

[src]

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

[src]

Returns a copy of the element at the given offset.

[src]

Sets the value of the element at the given offset.

[src]

Returns the number of elements in the array.

[src]

Trait Implementations

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

[src]

Performs the conversion.

impl Drop for Float32Array
[src]

[src]

Executes the destructor for this type. Read more

impl Default for Float32Array
[src]

[src]

Returns the "default value" for a type. Read more

impl GodotType for Float32Array
[src]

[src]

[src]

[src]

Auto Trait Implementations

impl Send for Float32Array

impl Sync for Float32Array