mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-04 22:58:46 +00:00
Add NSBundle, NSError, NSEnumerator
This commit is contained in:
@@ -19,8 +19,8 @@ Array_objectAtIndex :: proc(self: ^Array($T), index: UInteger) -> ^Object {
|
||||
return msgSend(^Object, self, "objectAtIndex:", index)
|
||||
}
|
||||
|
||||
Array_object :: proc(self: ^Array($T), index: UInteger) -> ^T {
|
||||
return (^T)(Array_objectAtIndex(self, index))
|
||||
Array_object :: proc(self: ^Array($T), index: UInteger) -> T {
|
||||
return (T)(Array_objectAtIndex(self, index))
|
||||
}
|
||||
|
||||
Array_count :: proc(self: ^Array($T)) -> UInteger {
|
||||
|
||||
Reference in New Issue
Block a user