mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-15 18:59:54 +00:00
* no message * Go further * Make the symbols public so that apps actually build * Move ASAvailability into the umbrella header * Remove duplicate define * Put the file back where it was in the list * Revert "Put the file back where it was in the list" This reverts commit 6a80c15b5b5efe5ff39812a018114e8bdc1dc0cf.
103 lines
2.8 KiB
Objective-C
103 lines
2.8 KiB
Objective-C
//
|
|
// NSIndexSet+ASHelpers.m
|
|
// AsyncDisplayKit
|
|
//
|
|
// Created by Adlai Holler on 6/23/16.
|
|
// Copyright © 2016 Facebook. All rights reserved.
|
|
//
|
|
|
|
|
|
// UIKit indexPath helpers
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <AsyncDisplayKit/NSIndexSet+ASHelpers.h>
|
|
|
|
@implementation NSIndexSet (ASHelpers)
|
|
|
|
- (NSIndexSet *)as_indexesByMapping:(NSUInteger (^)(NSUInteger))block
|
|
{
|
|
NSMutableIndexSet *result = [NSMutableIndexSet indexSet];
|
|
[self enumerateRangesUsingBlock:^(NSRange range, BOOL * _Nonnull stop) {
|
|
for (NSUInteger i = range.location; i < NSMaxRange(range); i++) {
|
|
NSUInteger newIndex = block(i);
|
|
if (newIndex != NSNotFound) {
|
|
[result addIndex:newIndex];
|
|
}
|
|
}
|
|
}];
|
|
return result;
|
|
}
|
|
|
|
- (NSIndexSet *)as_intersectionWithIndexes:(NSIndexSet *)indexes
|
|
{
|
|
NSMutableIndexSet *result = [NSMutableIndexSet indexSet];
|
|
[self enumerateRangesUsingBlock:^(NSRange range, BOOL * _Nonnull stop) {
|
|
[indexes enumerateRangesInRange:range options:kNilOptions usingBlock:^(NSRange range, BOOL * _Nonnull stop) {
|
|
[result addIndexesInRange:range];
|
|
}];
|
|
}];
|
|
return result;
|
|
}
|
|
|
|
+ (NSIndexSet *)as_indexSetFromIndexPaths:(NSArray<NSIndexPath *> *)indexPaths inSection:(NSUInteger)section
|
|
{
|
|
NSMutableIndexSet *result = [NSMutableIndexSet indexSet];
|
|
for (NSIndexPath *indexPath in indexPaths) {
|
|
if (indexPath.section == section) {
|
|
[result addIndex:indexPath.item];
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
- (NSUInteger)as_indexChangeByInsertingItemsBelowIndex:(NSUInteger)index
|
|
{
|
|
__block NSUInteger newIndex = index;
|
|
[self enumerateRangesUsingBlock:^(NSRange range, BOOL * _Nonnull stop) {
|
|
for (NSUInteger i = range.location; i < NSMaxRange(range); i++) {
|
|
if (i <= newIndex) {
|
|
newIndex += 1;
|
|
} else {
|
|
*stop = YES;
|
|
}
|
|
}
|
|
}];
|
|
return newIndex - index;
|
|
}
|
|
|
|
- (NSString *)as_smallDescription
|
|
{
|
|
NSMutableString *result = [NSMutableString stringWithString:@"{ "];
|
|
[self enumerateRangesUsingBlock:^(NSRange range, BOOL * _Nonnull stop) {
|
|
if (range.length == 1) {
|
|
[result appendFormat:@"%tu ", range.location];
|
|
} else {
|
|
[result appendFormat:@"%tu-%tu ", range.location, NSMaxRange(range) - 1];
|
|
}
|
|
}];
|
|
[result appendString:@"}"];
|
|
return result;
|
|
}
|
|
|
|
+ (NSIndexSet *)as_sectionsFromIndexPaths:(NSArray<NSIndexPath *> *)indexPaths
|
|
{
|
|
NSMutableIndexSet *result = [NSMutableIndexSet indexSet];
|
|
for (NSIndexPath *indexPath in indexPaths) {
|
|
[result addIndex:indexPath.section];
|
|
}
|
|
return result;
|
|
}
|
|
|
|
- (NSArray<NSIndexPath *> *)as_filterIndexPathsBySection:(id<NSFastEnumeration>)indexPaths
|
|
{
|
|
NSMutableArray *result = [NSMutableArray array];
|
|
for (NSIndexPath *indexPath in indexPaths) {
|
|
if ([self containsIndex:indexPath.section]) {
|
|
[result addObject:indexPath];
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
@end
|