forked from facebookarchive/AsyncDisplayKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathASMutableElementMap.h
More file actions
52 lines (34 loc) · 1.48 KB
/
ASMutableElementMap.h
File metadata and controls
52 lines (34 loc) · 1.48 KB
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
//
// ASMutableElementMap.h
// AsyncDisplayKit
//
// Created by Adlai Holler on 2/23/17.
// Copyright © 2017 Facebook. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <AsyncDisplayKit/ASBaseDefines.h>
#import <AsyncDisplayKit/ASElementMap.h>
NS_ASSUME_NONNULL_BEGIN
@class ASSection, ASCollectionElement;
/**
* This mutable version will be removed in the future. It's only here now to keep the diff small
* as we port data controller to use ASElementMap.
*/
AS_SUBCLASSING_RESTRICTED
@interface ASMutableElementMap : NSObject <NSCopying>
- (instancetype)init __unavailable;
- (instancetype)initWithSections:(NSArray<ASSection *> *)sections items:(ASCollectionElementTwoDimensionalArray *)items supplementaryElements:(ASSupplementaryElementDictionary *)supplementaryElements;
- (void)insertSection:(ASSection *)section atIndex:(NSInteger)index;
- (void)removeAllSectionContexts;
/// Only modifies the array of ASSection * objects
- (void)removeSectionContextsAtIndexes:(NSIndexSet *)indexes;
- (void)removeAllElements;
- (void)removeItemsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths;
- (void)removeSectionsOfItems:(NSIndexSet *)itemSections;
- (void)removeSupplementaryElementsInSections:(NSIndexSet *)sections;
- (void)insertEmptySectionsOfItemsAtIndexes:(NSIndexSet *)sections;
- (void)insertElement:(ASCollectionElement *)element atIndexPath:(NSIndexPath *)indexPath;
@end
@interface ASElementMap (MutableCopying) <NSMutableCopying>
@end
NS_ASSUME_NONNULL_END