289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
|
* @return A new, autoreleased OFString
*/
- (OFString*)localDateStringWithFormat: (OFConstantString*)format;
/*!
* @brief Returns the earlier of the two dates.
*
* If the argument is nil, it returns the receiver.
*
* @param otherDate Another date
* @return The earlier date of the two dates
*/
- (OFDate*)earlierDate: (OFDate*)otherDate;
/*!
* @brief Returns the later of the two dates.
*
* If the argument is nil, it returns the receiver.
*
* @param otherDate Another date
* @return The later date of the two dates
*/
- (OFDate*)laterDate: (OFDate*)otherDate;
/*!
|
|
|
|
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
|
* @return A new, autoreleased OFString
*/
- (OFString*)localDateStringWithFormat: (OFConstantString*)format;
/*!
* @brief Returns the earlier of the two dates.
*
* If the argument is `nil`, it returns the receiver.
*
* @param otherDate Another date
* @return The earlier date of the two dates
*/
- (OFDate*)earlierDate: (OFDate*)otherDate;
/*!
* @brief Returns the later of the two dates.
*
* If the argument is `nil`, it returns the receiver.
*
* @param otherDate Another date
* @return The later date of the two dates
*/
- (OFDate*)laterDate: (OFDate*)otherDate;
/*!
|