[go: up one dir, main page]

Trait cocoa::foundation::NSArray

source ·
pub trait NSArray: Sized {
    unsafe fn init(self) -> *mut Object;
    unsafe fn count(self) -> u64;
    unsafe fn arrayByAddingObjectFromArray(
        self,
        object: *mut Object
    ) -> *mut Object; unsafe fn arrayByAddingObjectsFromArray(
        self,
        objects: *mut Object
    ) -> *mut Object; unsafe fn objectAtIndex(self, index: u64) -> *mut Object; unsafe fn array(Self) -> *mut Object { ... } unsafe fn arrayWithObjects(Self, objects: &[*mut Object]) -> *mut Object { ... } unsafe fn arrayWithObject(Self, object: *mut Object) -> *mut Object { ... } }

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors