Skip to main content

ISortedList_ValueListMethods

Trait ISortedList_ValueListMethods 

Source
pub trait ISortedList_ValueListMethods: ISortedList_ValueList {
Show 16 methods // Provided methods fn ctor(self, sorted_list: impl Into<SortedList>) { ... } fn get_count(self) -> i32 { ... } fn get_is_read_only(self) -> bool { ... } fn get_is_synchronized(self) -> bool { ... } fn get_sync_root(self) -> Object { ... } fn add(self, key: impl Into<Object>) -> i32 { ... } fn clear(self) { ... } fn contains(self, value: impl Into<Object>) -> bool { ... } fn copy_to(self, array: impl Into<IlInstance>, array_index: impl Into<i32>) { ... } fn insert(self, index: impl Into<i32>, value: impl Into<Object>) { ... } fn get_item(self, index: impl Into<i32>) -> Object { ... } fn set_item(self, index: impl Into<i32>, value: impl Into<Object>) { ... } fn get_enumerator(self) -> IEnumerator { ... } fn index_of(self, value: impl Into<Object>) -> i32 { ... } fn remove(self, value: impl Into<Object>) { ... } fn remove_at(self, index: impl Into<i32>) { ... }
}

Provided Methods§

Source

fn ctor(self, sorted_list: impl Into<SortedList>)

.ctor(crate::system::collections::sortedlist::SortedList) overload

Source

fn get_count(self) -> i32

get_Count() overload

Source

fn get_is_read_only(self) -> bool

get_IsReadOnly() overload

Source

fn get_is_synchronized(self) -> bool

get_IsSynchronized() overload

Source

fn get_sync_root(self) -> Object

get_SyncRoot() overload

Source

fn add(self, key: impl Into<Object>) -> i32

Add(crate::system::object::Object) overload

Source

fn clear(self)

Clear() overload

Source

fn contains(self, value: impl Into<Object>) -> bool

Contains(crate::system::object::Object) overload

Source

fn copy_to(self, array: impl Into<IlInstance>, array_index: impl Into<i32>)

CopyTo(::unity::IlInstance, i32) overload

Source

fn insert(self, index: impl Into<i32>, value: impl Into<Object>)

Insert(i32, crate::system::object::Object) overload

Source

fn get_item(self, index: impl Into<i32>) -> Object

get_Item(i32) overload

Source

fn set_item(self, index: impl Into<i32>, value: impl Into<Object>)

set_Item(i32, crate::system::object::Object) overload

Source

fn get_enumerator(self) -> IEnumerator

GetEnumerator() overload

Source

fn index_of(self, value: impl Into<Object>) -> i32

IndexOf(crate::system::object::Object) overload

Source

fn remove(self, value: impl Into<Object>)

Remove(crate::system::object::Object) overload

Source

fn remove_at(self, index: impl Into<i32>)

RemoveAt(i32) overload

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<__T: ISortedList_ValueList> ISortedList_ValueListMethods for __T

Available on crate feature system-collections-sortedlist only.