Differences From Artifact [9f71c62224]:
- File src/OFSet.h — part of check-in [d537543238] at 2019-06-20 23:36:45 on branch trunk — Document methods to override in class clusters (user: js, size: 7885) [annotate] [blame] [check-ins using] [more...]
To Artifact [f80d14d494]:
- File
src/OFSet.h
— part of check-in
[496695d778]
at
2019-09-29 19:35:38
on branch trunk
— Either restrict subclassing or reserve ivar space
This allows ABI stability with the fragile ABI. (user: js, size: 7911) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
* @ref objectEnumerator.
*/
@interface OFSet OF_GENERIC(ObjectType): OFObject <OFCollection, OFCopying,
OFMutableCopying, OFSerialization>
#if !defined(OF_HAVE_GENERICS) && !defined(DOXYGEN)
# define ObjectType id
#endif
/*!
* @brief An array of all objects in the set.
*/
@property (readonly, nonatomic) OFArray OF_GENERIC(ObjectType) *allObjects;
/*!
* @brief An arbitrary object in the set.
| > > > > | 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
* @ref objectEnumerator.
*/
@interface OFSet OF_GENERIC(ObjectType): OFObject <OFCollection, OFCopying,
OFMutableCopying, OFSerialization>
#if !defined(OF_HAVE_GENERICS) && !defined(DOXYGEN)
# define ObjectType id
#endif
{
OF_RESERVE_IVARS(4)
}
/*!
* @brief An array of all objects in the set.
*/
@property (readonly, nonatomic) OFArray OF_GENERIC(ObjectType) *allObjects;
/*!
* @brief An arbitrary object in the set.
|
| ︙ | ︙ |