Struct gdnative_core::VariantArray [−][src]
pub struct VariantArray(_);
A reference-counted Variant vector. Godot's generic array data type.
Negative indices can be used to count from the right.
Methods
impl VariantArray[src]
impl VariantArraypub fn new() -> Self[src]
pub fn new() -> SelfCreates an empty VariantArray.
pub fn set(&mut self, idx: i32, val: &Variant)[src]
pub fn set(&mut self, idx: i32, val: &Variant)Sets the value of the element at the given offset.
pub fn get_val(&mut self, idx: i32) -> Variant[src]
pub fn get_val(&mut self, idx: i32) -> VariantReturns a copy of the element at the given offset.
pub fn get_ref(&self, idx: i32) -> &Variant[src]
pub fn get_ref(&self, idx: i32) -> &VariantReturns a reference to the element at the given offset.
pub fn get_mut_ref(&mut self, idx: i32) -> &mut Variant[src]
pub fn get_mut_ref(&mut self, idx: i32) -> &mut VariantReturns a mutable reference to the element at the given offset.
pub fn count(&mut self, val: &Variant) -> i32[src]
pub fn count(&mut self, val: &Variant) -> i32pub fn clear(&mut self)[src]
pub fn clear(&mut self)Clears the array, resizing to 0.
pub fn remove(&mut self, idx: i32)[src]
pub fn remove(&mut self, idx: i32)pub fn erase(&mut self, val: &Variant)[src]
pub fn erase(&mut self, val: &Variant)pub fn is_empty(&self) -> bool[src]
pub fn is_empty(&self) -> boolReturns true if the VariantArray contains no elements.
pub fn len(&self) -> i32[src]
pub fn len(&self) -> i32Returns the number of elements in the array.
pub fn push(&mut self, val: &Variant)[src]
pub fn push(&mut self, val: &Variant)Appends an element at the end of the array.
pub fn pop(&mut self) -> Variant[src]
pub fn pop(&mut self) -> VariantRemoves an element at the end of the array.
pub fn push_front(&mut self, val: &Variant)[src]
pub fn push_front(&mut self, val: &Variant)Appends an element to the front of the array.
pub fn pop_front(&mut self) -> Variant[src]
pub fn pop_front(&mut self) -> VariantRemoves an element at the front of the array.
pub fn insert(&mut self, at: i32, val: &Variant)[src]
pub fn insert(&mut self, at: i32, val: &Variant)Insert a new int at a given position in the array.
pub fn find(&self, what: &Variant, from: i32) -> i32[src]
pub fn find(&self, what: &Variant, from: i32) -> i32Searches the array for a value and returns its index.
Pass an initial search index as the second argument.
Returns -1 if value is not found.
pub fn contains(&self, what: &Variant) -> bool[src]
pub fn contains(&self, what: &Variant) -> boolReturns true if the VariantArray contains the specified value.
pub fn resize(&mut self, size: i32)[src]
pub fn resize(&mut self, size: i32)pub fn rfind(&self, what: &Variant, from: i32) -> i32[src]
pub fn rfind(&self, what: &Variant, from: i32) -> i32Searches the array in reverse order. Pass an initial search index as the second argument. If negative, the start index is considered relative to the end of the array.
pub fn find_last(&self, what: &Variant) -> i32[src]
pub fn find_last(&self, what: &Variant) -> i32Searches the array in reverse order for a value.
Returns its index or -1 if not found.
pub fn invert(&mut self)[src]
pub fn invert(&mut self)Inverts the order of the elements in the array.
pub fn hash(&self) -> i32[src]
pub fn hash(&self) -> i32Return a hashed i32 value representing the array contents.
pub fn sort(&mut self)[src]
pub fn sort(&mut self)pub fn new_ref(&self) -> VariantArray[src]
pub fn new_ref(&self) -> VariantArrayTrait Implementations
impl<'l> From<&'l VariantArray> for Variant[src]
impl<'l> From<&'l VariantArray> for Variantfn from(val: &'l VariantArray) -> Variant[src]
fn from(val: &'l VariantArray) -> VariantPerforms the conversion.
impl Drop for VariantArray[src]
impl Drop for VariantArrayimpl Default for VariantArray[src]
impl Default for VariantArrayimpl ToVariant for VariantArray[src]
impl ToVariant for VariantArrayfn to_variant(&self) -> Variant[src]
fn to_variant(&self) -> Variantfn from_variant(variant: &Variant) -> Option<Self>[src]
fn from_variant(variant: &Variant) -> Option<Self>Auto Trait Implementations
impl Send for VariantArray
impl Send for VariantArrayimpl Sync for VariantArray
impl Sync for VariantArray