Struct objc2::foundation::NSMutableArray
source · #[repr(C)]pub struct NSMutableArray<T: Message, O: Ownership = Owned> { /* private fields */ }
Expand description
A growable ordered collection of objects.
See the documentation for NSArray
and/or Apple’s
documentation for more information.
Implementations§
source§impl<T: Message, O: Ownership> NSMutableArray<T, O>
impl<T: Message, O: Ownership> NSMutableArray<T, O>
Generic creation methods.
Creation methods that produce shared arrays.
source§impl<T: Message, O: Ownership> NSMutableArray<T, O>
impl<T: Message, O: Ownership> NSMutableArray<T, O>
Generic accessor methods.
pub fn push(&mut self, obj: Id<T, O>)
pub fn insert(&mut self, index: usize, obj: Id<T, O>)
pub fn replace(&mut self, index: usize, obj: Id<T, O>) -> Id<T, O>
pub fn remove(&mut self, index: usize) -> Id<T, O>
pub fn pop(&mut self) -> Option<Id<T, O>>
pub fn clear(&mut self)
pub fn sort_by<F: FnMut(&T, &T) -> Ordering>(&mut self, compare: F)
Methods from Deref<Target = NSArray<T, O>>§
pub fn len(&self) -> usize
pub fn is_empty(&self) -> bool
pub fn get(&self, index: usize) -> Option<&T>
pub fn first(&self) -> Option<&T>
pub fn last(&self) -> Option<&T>
pub fn iter(&self) -> NSEnumerator<'_, T> ⓘ
pub fn objects_in_range(&self, range: Range<usize>) -> Vec<&T>
pub fn to_vec(&self) -> Vec<&T>
pub fn get_retained(&self, index: usize) -> Id<T, Shared>
pub fn get_mut(&mut self, index: usize) -> Option<&mut T>
pub fn first_mut(&mut self) -> Option<&mut T>
pub fn last_mut(&mut self) -> Option<&mut T>
Methods from Deref<Target = NSObject>§
sourcepub fn is_kind_of<T: ClassType>(&self) -> bool
pub fn is_kind_of<T: ClassType>(&self) -> bool
Check if the object is an instance of the class, or one of it’s subclasses.
See Apple’s documentation for more details on what you may (and what you may not) do with this information.
Methods from Deref<Target = Object>§
sourcepub unsafe fn ivar_ptr<T: Encode>(&self, name: &str) -> *mut T
pub unsafe fn ivar_ptr<T: Encode>(&self, name: &str) -> *mut T
Returns a pointer to the instance variable / ivar with the given name.
This is similar to UnsafeCell::get
, see that for more information
on what is and isn’t safe to do.
Usually you will have defined the instance variable yourself with
ClassBuilder::add_ivar
, the type of the ivar T
must match the
type used in that.
Attempting to access or modify private implementation details of a class that you do no control using this is not supported, and may invoke undefined behaviour.
Library implementors are strongly encouraged to expose a safe interface to the ivar.
Panics
May panic if the object has no ivar with the given name. May also
panic if the type encoding of the ivar differs from the type encoding
of T
.
This should purely seen as help while debugging and is not guaranteed
(e.g. it may be disabled when debug_assertions
are off).
Safety
The object must have an instance variable with the given name, and it
must be of type T
. Any invariants that the object have assumed about
the value of the instance variable must not be violated.
No thread syncronization is done on accesses to the variable, so you must ensure that any access to the returned pointer do not cause data races, and that Rust’s mutability rules are not otherwise violated.
sourcepub unsafe fn ivar<T: Encode>(&self, name: &str) -> &T
pub unsafe fn ivar<T: Encode>(&self, name: &str) -> &T
Returns a reference to the instance variable with the given name.
See Object::ivar_ptr
for more information, including on when this
panics.
Safety
The object must have an instance variable with the given name, and it
must be of type T
.
No thread syncronization is done, so you must ensure that no other
thread is concurrently mutating the variable. This requirement can be
considered upheld if all mutation happens through Object::ivar_mut
(since that takes &mut self
).
sourcepub unsafe fn get_ivar<T: Encode>(&self, name: &str) -> &T
👎Deprecated: Use Object::ivar
instead.
pub unsafe fn get_ivar<T: Encode>(&self, name: &str) -> &T
Object::ivar
instead.sourcepub unsafe fn ivar_mut<T: Encode>(&mut self, name: &str) -> &mut T
pub unsafe fn ivar_mut<T: Encode>(&mut self, name: &str) -> &mut T
Returns a mutable reference to the ivar with the given name.
See Object::ivar_ptr
for more information, including on when this
panics.
Safety
The object must have an instance variable with the given name, and it
must be of type T
.
This access happens through &mut self
, which means we know it to be
the only reference, hence you do not need to do any work to ensure
that data races do not happen.
sourcepub unsafe fn get_mut_ivar<T: Encode>(&mut self, name: &str) -> &mut T
👎Deprecated: Use Object::ivar_mut
instead.
pub unsafe fn get_mut_ivar<T: Encode>(&mut self, name: &str) -> &mut T
Object::ivar_mut
instead.sourcepub unsafe fn set_ivar<T: Encode>(&mut self, name: &str, value: T)
pub unsafe fn set_ivar<T: Encode>(&mut self, name: &str, value: T)
Sets the value of the ivar with the given name.
This is just a helpful shorthand for Object::ivar_mut
, see that
for more information.
Safety
Same as Object::ivar_mut
.
Trait Implementations§
source§impl<T: Message, O: Ownership> AsMut<NSMutableArray<T, O>> for NSMutableArray<T, O>
impl<T: Message, O: Ownership> AsMut<NSMutableArray<T, O>> for NSMutableArray<T, O>
source§impl<T: Message, O: Ownership> AsRef<NSMutableArray<T, O>> for NSMutableArray<T, O>
impl<T: Message, O: Ownership> AsRef<NSMutableArray<T, O>> for NSMutableArray<T, O>
source§impl<T: Message, O: Ownership> BorrowMut<NSArray<T, O>> for NSMutableArray<T, O>
impl<T: Message, O: Ownership> BorrowMut<NSArray<T, O>> for NSMutableArray<T, O>
source§fn borrow_mut(&mut self) -> &mut NSArray<T, O>
fn borrow_mut(&mut self) -> &mut NSArray<T, O>
source§impl<T: Message, O: Ownership> BorrowMut<NSObject> for NSMutableArray<T, O>
impl<T: Message, O: Ownership> BorrowMut<NSObject> for NSMutableArray<T, O>
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl<T: Message, O: Ownership> BorrowMut<Object> for NSMutableArray<T, O>
impl<T: Message, O: Ownership> BorrowMut<Object> for NSMutableArray<T, O>
source§fn borrow_mut(&mut self) -> &mut Object
fn borrow_mut(&mut self) -> &mut Object
source§impl<T: Message, O: Ownership> ClassType for NSMutableArray<T, O>
impl<T: Message, O: Ownership> ClassType for NSMutableArray<T, O>
source§impl<T: Message, O: Ownership> Extend<Id<T, O>> for NSMutableArray<T, O>
impl<T: Message, O: Ownership> Extend<Id<T, O>> for NSMutableArray<T, O>
source§fn extend<I: IntoIterator<Item = Id<T, O>>>(&mut self, iter: I)
fn extend<I: IntoIterator<Item = Id<T, O>>>(&mut self, iter: I)
source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)source§impl<'a, T: Message, O: Ownership> IntoIterator for &'a NSMutableArray<T, O>
impl<'a, T: Message, O: Ownership> IntoIterator for &'a NSMutableArray<T, O>
This is implemented as a shallow copy.
source§impl<T: Message, O: Ownership> NSFastEnumeration for NSMutableArray<T, O>
impl<T: Message, O: Ownership> NSFastEnumeration for NSMutableArray<T, O>
This is implemented as a shallow copy.
source§impl<T: PartialEq + Message, O: PartialEq + Ownership> PartialEq<NSMutableArray<T, O>> for NSMutableArray<T, O>
impl<T: PartialEq + Message, O: PartialEq + Ownership> PartialEq<NSMutableArray<T, O>> for NSMutableArray<T, O>
source§fn eq(&self, other: &NSMutableArray<T, O>) -> bool
fn eq(&self, other: &NSMutableArray<T, O>) -> bool
self
and other
values to be equal, and is used
by ==
.