Enum core.attribute.optional
Use this attribute to make an Objective-C interface method optional.
						
				enum optional
				 : void { ... }
						
					
				An optional method is a method that does **not** have to be implemented in the class that implements the interface. To safely call an optional method, a runtime check should be performed to make sure the receiver implements the method.
This is a special compiler recognized attribute, it has several requirements, which all will be enforced by the compiler:
 * The attribute can only be attached to methods which have Objective-C
   linkage. That is, a method inside an interface declared as extern (Objective-C)
* It can only be used for methods that are declared inside an interface * It can only be used once in a method declaration * It cannot be attached to a method that is a template
Enum members
| Name | Description | 
|---|
Examples
import coreAuthors
Jacob Carlborg