50
51
52
53
54
55
56
57
58
59
60
|
/*!
* @brief Initializes an already allocated enumeration mutation exception.
*
* @param object The object which was mutated during enumeration
* @return An initialized enumeration mutation exception
*/
- initWithObject: (id)object;
@end
OF_ASSUME_NONNULL_END
|
|
|
50
51
52
53
54
55
56
57
58
59
60
|
/*!
* @brief Initializes an already allocated enumeration mutation exception.
*
* @param object The object which was mutated during enumeration
* @return An initialized enumeration mutation exception
*/
- initWithObject: (id)object OF_DESIGNATED_INITIALIZER;
@end
OF_ASSUME_NONNULL_END
|