ResKnife/Cocoa/Categories/NSNumber-Range.h
2002-10-12 08:45:54 +00:00

10 lines
335 B
Objective-C

#import <Foundation/Foundation.h>
@interface NSNumber (ResKnifeRangeExtensions)
- (BOOL)isWithinRange:(NSRange)range; // location <= self <= location+length
- (BOOL)isExclusivelyWithinRange:(NSRange)range; // location < self < location+length
- (BOOL)isBoundedByRange:(NSRange)range; // location <= self < location+length
@end