Returns a Boolean value that indicates whether the receiver is less than or equal to another given object.
SDK
macOS 10.0+
Framework
Foundation
Declaration
- (BOOL)isLessThanOrEqualTo:(id)object;
Parameters
object
The object with which to compare the receiver.
Return Value
YES if the receiver is less than or equal to object, otherwise NO.
Discussion
During the evaluation of an NSWhoseSpecifier object that contains a test whose operator is NSLessThanOrEqualToComparison, an isLessThanOrEqualTo: message may be sent to each potentially specified object, if the potentially specified object does not implement a scriptingIsLessThanOrEqualTo: method and the object being tested against does not implement a scriptingIsGreaterThan: method.
The default implementation for this method provided by NSObject method returns YES if a compare: message sent to the same object would return NSOrderedAscending or NSOrderedSame.
Returns a Boolean value that indicates whether receiver is considered to be “like” a given string when the case of characters in the receiver is ignored.