mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-11-08 17:06:27 +00:00
10 lines
335 B
C
10 lines
335 B
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
|