Skip to main content

ISortedSet_1Methods

Trait ISortedSet_1Methods 

Source
pub trait ISortedSet_1Methods<T0: ClassIdentity>: ClassIdentity {
Show 27 methods // Provided methods fn ctor(self) where Self: Sized { ... } fn ctor_2(self, comparer: IComparer_1_Interface<T0>) where Self: Sized { ... } fn in_order_tree_walk(self, action: TreeWalkPredicate_1<T0>) -> bool where Self: Sized { ... } fn get_count(self) -> i32 where Self: Sized { ... } fn system_collections_i_collection_get_is_synchronized(self) -> bool where Self: Sized { ... } fn system_collections_i_collection_get_sync_root(self) -> Object where Self: Sized { ... } fn version_check(self) where Self: Sized { ... } fn is_within_range(self, item: T0) -> bool where Self: Sized { ... } fn add(self, item: T0) -> bool where Self: Sized { ... } fn add_if_not_present(self, item: T0) -> bool where Self: Sized { ... } fn remove(self, item: T0) -> bool where Self: Sized { ... } fn do_remove(self, item: T0) -> bool where Self: Sized { ... } fn clear(self) where Self: Sized { ... } fn contains(self, item: T0) -> bool where Self: Sized { ... } fn copy_to(self, array: Array<T0>, index: i32) where Self: Sized { ... } fn copy_to_2(self, array: Array<T0>, index: i32, count: i32) where Self: Sized { ... } fn system_collections_i_collection_copy_to( self, array: IlInstance, index: i32, ) where Self: Sized { ... } fn get_enumerator(self) -> SortedSet_1_Enumerator<T0> where Self: Sized { ... } fn system_collections_i_enumerable_get_enumerator(self) -> IEnumerator where Self: Sized { ... } fn insertion_balance( self, current: SortedSet_1_Node<T0>, grand_parent: SortedSet_1_Node<T0>, great_grand_parent: SortedSet_1_Node<T0>, ) -> ((), SortedSet_1_Node<T0>) where Self: Sized { ... } fn replace_child_or_root( self, parent: SortedSet_1_Node<T0>, child: SortedSet_1_Node<T0>, new_child: SortedSet_1_Node<T0>, ) where Self: Sized { ... } fn replace_node( self, match: SortedSet_1_Node<T0>, parent_of_match: SortedSet_1_Node<T0>, successor: SortedSet_1_Node<T0>, parent_of_successor: SortedSet_1_Node<T0>, ) where Self: Sized { ... } fn find_node(self, item: T0) -> SortedSet_1_Node<T0> where Self: Sized { ... } fn update_version(self) where Self: Sized { ... } fn system_runtime_serialization_i_deserialization_callback_on_deserialization( self, sender: Object, ) where Self: Sized { ... } fn on_deserialization(self, sender: Object) where Self: Sized { ... } fn log2(value: i32) -> i32 { ... }
}

Provided Methods§

Source

fn ctor(self)
where Self: Sized,

Source

fn ctor_2(self, comparer: IComparer_1_Interface<T0>)
where Self: Sized,

Source

fn in_order_tree_walk(self, action: TreeWalkPredicate_1<T0>) -> bool
where Self: Sized,

Source

fn get_count(self) -> i32
where Self: Sized,

Source

fn system_collections_i_collection_get_is_synchronized(self) -> bool
where Self: Sized,

Source

fn system_collections_i_collection_get_sync_root(self) -> Object
where Self: Sized,

Source

fn version_check(self)
where Self: Sized,

Source

fn is_within_range(self, item: T0) -> bool
where Self: Sized,

Source

fn add(self, item: T0) -> bool
where Self: Sized,

Source

fn add_if_not_present(self, item: T0) -> bool
where Self: Sized,

Source

fn remove(self, item: T0) -> bool
where Self: Sized,

Source

fn do_remove(self, item: T0) -> bool
where Self: Sized,

Source

fn clear(self)
where Self: Sized,

Source

fn contains(self, item: T0) -> bool
where Self: Sized,

Source

fn copy_to(self, array: Array<T0>, index: i32)
where Self: Sized,

Source

fn copy_to_2(self, array: Array<T0>, index: i32, count: i32)
where Self: Sized,

Source

fn system_collections_i_collection_copy_to(self, array: IlInstance, index: i32)
where Self: Sized,

Source

fn get_enumerator(self) -> SortedSet_1_Enumerator<T0>
where Self: Sized,

Source

fn system_collections_i_enumerable_get_enumerator(self) -> IEnumerator
where Self: Sized,

Source

fn insertion_balance( self, current: SortedSet_1_Node<T0>, grand_parent: SortedSet_1_Node<T0>, great_grand_parent: SortedSet_1_Node<T0>, ) -> ((), SortedSet_1_Node<T0>)
where Self: Sized,

Source

fn replace_child_or_root( self, parent: SortedSet_1_Node<T0>, child: SortedSet_1_Node<T0>, new_child: SortedSet_1_Node<T0>, )
where Self: Sized,

Source

fn replace_node( self, match: SortedSet_1_Node<T0>, parent_of_match: SortedSet_1_Node<T0>, successor: SortedSet_1_Node<T0>, parent_of_successor: SortedSet_1_Node<T0>, )
where Self: Sized,

Source

fn find_node(self, item: T0) -> SortedSet_1_Node<T0>
where Self: Sized,

Source

fn update_version(self)
where Self: Sized,

Source

fn system_runtime_serialization_i_deserialization_callback_on_deserialization( self, sender: Object, )
where Self: Sized,

Source

fn on_deserialization(self, sender: Object)
where Self: Sized,

Source

fn log2(value: i32) -> i32

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§