[go: up one dir, main page]

[][src]Trait cocoa::foundation::NSArray

pub trait NSArray {
    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

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

Loading content...

Provided methods

unsafe fn array(Self) -> *mut Object

unsafe fn arrayWithObjects(Self, objects: &[*mut Object]) -> *mut Object

unsafe fn arrayWithObject(Self, object: *mut Object) -> *mut Object

Loading content...

Implementations on Foreign Types

impl NSArray for *mut Object[src]

Loading content...

Implementors

Loading content...