blob: 5f02935dd85e1b8cb5f492464694dadd50d098d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
//
// MCOIndexSet.h
// mailcore2
//
// Created by DINH Viêt Hoà on 3/23/13.
// Copyright (c) 2013 MailCore. All rights reserved.
//
#ifndef __MAILCORE_MCOINDEXSET_H_
#define __MAILCORE_MCOINDEXSET_H_
#import <Foundation/Foundation.h>
#import <MailCore/MCORange.h>
// similar to NSMutableIndexSet but supports int64_t
@interface MCOIndexSet : NSObject <NSCopying>
// Creates an empty index set.
+ (MCOIndexSet *) indexSet;
// Creates an index set that contains a range of integers.
+ (MCOIndexSet *) indexSetWithRange:(MCORange)range;
// Creates an index set with a single integer.
+ (MCOIndexSet *) indexSetWithIndex:(uint64_t)idx;
// Returns the number of integers in that index set.
- (unsigned int) count;
// Adds an integer to the index set.
- (void) addIndex:(uint64_t)idx;
// Removes an integer from the index set.
- (void) removeIndex:(uint64_t)idx;
// Returns YES if the index set contains the given integer.
- (BOOL) containsIndex:(uint64_t)idx;
// Adds a range of integers to the index set.
- (void) addRange:(MCORange)range;
// Removes a range of integers from the index set.
- (void) removeRange:(MCORange)range;
// Removes all integers that are not in the given range.
- (void) intersectsRange:(MCORange)range;
// Returns all the ranges of ths index set.
- (MCORange *) allRanges;
// Returns the number of ranges in this index set.
- (unsigned int) rangesCount;
@end
#endif
|