Differences From Artifact [4b9e5cee54]:
- File
src/OFNumber.h
— part of check-in
[27002f2efe]
at
2021-04-17 00:57:59
on branch trunk
— OFNumber: Remove useless OF_UNAVAILABLE
These methods no longer exist. (user: js, size: 10456) [annotate] [blame] [check-ins using]
To Artifact [1bc62b5876]:
- File src/OFNumber.h — part of check-in [458420998c] at 2021-04-19 21:54:35 on branch new-naming-convention — Rename a few more constants (user: js, size: 10394) [annotate] [blame] [check-ins using] [more...]
| ︙ | |||
42 43 44 45 46 47 48 | 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | - + |
*/
#ifndef OF_NUMBER_M
OF_SUBCLASSING_RESTRICTED
#endif
@interface OFNumber: OFValue <OFComparing, OFSerialization,
OFJSONRepresentation, OFMessagePackRepresentation>
{
|
| ︙ | |||
125 126 127 128 129 130 131 | 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | - - - - + + + + | @property (readonly, nonatomic) OFString *stringValue; #ifdef OF_HAVE_UNAVAILABLE + (instancetype)valueWithBytes: (const void *)bytes objCType: (const char *)objCType OF_UNAVAILABLE; + (instancetype)valueWithPointer: (const void *)pointer OF_UNAVAILABLE; + (instancetype)valueWithNonretainedObject: (id)object OF_UNAVAILABLE; |
| ︙ | |||
358 359 360 361 362 363 364 | 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 | - + | /** * @brief Compares the number to another number. * * @param number The number to compare the number to * @return The result of the comparison */ |