Lines Matching full:mutable
9 NSMutableSet* mutable = [NSMutableSet setWithCapacity:5];
10 [mutable addObject:@1];
11 [mutable addObject:@2];
12 [mutable addObject:@3];
13 [mutable addObject:@4];
14 [mutable addObject:@5];
15 [mutable addObject:[NSURL URLWithString:@"www.apple.com"]];
16 [mutable addObject:@[@1,@2,@3]];
17 [mutable unionSet:set];
18 [mutable removeAllObjects]; // Set break point at this line.
19 [mutable unionSet:set];
20 [mutable addObject:@1];