Trait Array

Source
pub trait Array<T: Object>: Object {
    // Provided method
    unsafe fn set_object_at_indexed_subscript(&self, index: NSUInteger, obj: &T) { ... }
}

Provided Methods§

Source

unsafe fn set_object_at_indexed_subscript(&self, index: NSUInteger, obj: &T)

Puts in the array at the specified index the specified object.

Implementors§