| *trace-method-calls* | Whether to print trace messages of all Objective-C method calls. |
| +nil+ | The Objective-C constant value nil.
|
| +no+ | The Objective-C boolean value NO.
|
| +yes+ | The Objective-C boolean value YES.
|
| collect-classes | Intern all objective-c-classes known to the runtime. |
| collect-methods | Intern all method selectors known to the runtime. |
| define-returns-boolean-exception | Define an exception to the rule that char means BOOL as a method return type.
|
| disable-method-syntax | Disable the reader macro installed by enable-method-syntax. |
| disable-objective-c-syntax | Disable the reader macro installed by enable-objective-c-syntax. |
| enable-method-syntax | Install a reader macro that makes method calls look nicer. |
| enable-objective-c-syntax | Install an Objective-C-like reader macro for Objective-C method calls. |
| find-objc-class | Retrieve an Objective-C class by name. |
| find-selector | Retrieve a method selector by name. |
| initialise-runtime | Initialise the Objective-C runtime. |
| install-reader-syntax | This function is deprecated. Use enable-objective-c-syntax instead. |
| intern-selector | Retrieve a method selector by name, or create it if it does not exist. |
| invoke | Send a message to an Objective-C instance. |
| invoke-by-name | Send a message to an Objective-C object by the name of the method. |
| objc-class-name | Find the name of a class. |
| selector | Convert an object into a selector. |
| shutdown-runtime | Shut the Objective-C runtime down. |
| super | Send a super message to the receiver of the current message. |
| undefine-returns-boolean-exception | Revert the effect of define-returns-boolean-exception for a given selector. |
| foreign-value-lisp-managed-p | Determine or change whether a foreign value will be garbage-collected. |
| foreign-value-pointer | Access the pointer to the foreign data wrapped by a foreign-value. |
| objc-eql | Test whether two references point to the same object. |
| objc-equal | Test whether two objects are equal. |
| objective-c-class-registered-p | Determine whether a class has been registered with the Objective-C runtime. |
| selector-name | Find the name of a selector. |
| define-objective-c-class | Define a new Objective-C class. |
| define-objective-c-generic-function | Define a new Objective-C generic function. |
| define-objective-c-method | Define a new Objective-C method. |
| exception | The condition type for Objective-C exceptions. |
| message-not-understood | The runtime is unable to retrieve the signature of a method. |
| no-such-selector | Someone tried to dereference an invalid method selector. |
| foreign-struct | A wrapper type for foreign struct values. |
| foreign-union | A wrapper type for foreign union values. |
| foreign-value | A wrapper type for complex foreign values. |
| id | The type of all Objective-C objects. |
| objective-c-class | The type of all Objective-C classes. |
| objective-c-generic-function | An Objective-C dispatch function for a given selector. |
| objective-c-method | An Objective-C method implemented in Lisp. |
| selector | An Objective-C method selector. |