mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-06 06:58:26 +00:00
Summary: ## Changes in this pull request A better version of https://github.com/Instagram/IGListKit/issues/1465 =) - SPM support with script-based generations. - added macOS Catalyst support ### Generate SPM layout 1. From **project's root** run: `bash scripts/generate_spm_sources_layout.sh` 2. Commit Changes Repeat those steps each time you delete/add the project's files. **Make sure** to have this CI step which will check that `generate_spm_sources_layout.sh` is not broken. Issue fixed: https://github.com/Instagram/IGListKit/issues/1368 #1406 ### Checklist - [ ] All tests pass. Demo project builds and runs. - [ ] I added tests, an experiment, or detailed why my change isn't tested. - [ ] I added an entry to the `CHANGELOG.md` for any breaking changes, enhancements, or bug fixes. - [ ] I have reviewed the [contributing guide](https://github.com/Instagram/IGListKit/blob/master/.github/CONTRIBUTING.md) Pull Request resolved: https://github.com/Instagram/IGListKit/pull/1487 Reviewed By: DimaVartanian, candance Differential Revision: D30428297 Pulled By: lorixx fbshipit-source-id: 655291ff03445dec9b0b8cd97916f0c88207e9a7
63 lines
2.1 KiB
Objective-C
63 lines
2.1 KiB
Objective-C
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "IGListDiffable.h"
|
|
#import "IGListIndexPathResult.h"
|
|
#import "IGListIndexSetResult.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
An option for how to do comparisons between similar objects.
|
|
*/
|
|
NS_SWIFT_NAME(ListDiffOption)
|
|
typedef NS_ENUM(NSInteger, IGListDiffOption) {
|
|
/**
|
|
Compare objects using pointer personality.
|
|
*/
|
|
IGListDiffPointerPersonality,
|
|
/**
|
|
Compare objects using `-[IGListDiffable isEqualToDiffableObject:]`.
|
|
*/
|
|
IGListDiffEquality
|
|
};
|
|
|
|
/**
|
|
Creates a diff using indexes between two collections.
|
|
|
|
@param oldArray The old objects to diff against.
|
|
@param newArray The new objects.
|
|
@param option An option on how to compare objects.
|
|
|
|
@return A result object containing affected indexes.
|
|
*/
|
|
NS_SWIFT_NAME(ListDiff(oldArray:newArray:option:))
|
|
FOUNDATION_EXTERN IGListIndexSetResult *IGListDiff(NSArray<id<IGListDiffable>> *_Nullable oldArray,
|
|
NSArray<id<IGListDiffable>> *_Nullable newArray,
|
|
IGListDiffOption option);
|
|
|
|
/**
|
|
Creates a diff using index paths between two collections.
|
|
|
|
@param fromSection The old section.
|
|
@param toSection The new section.
|
|
@param oldArray The old objects to diff against.
|
|
@param newArray The new objects.
|
|
@param option An option on how to compare objects.
|
|
|
|
@return A result object containing affected indexes.
|
|
*/
|
|
NS_SWIFT_NAME(ListDiffPaths(fromSection:toSection:oldArray:newArray:option:))
|
|
FOUNDATION_EXTERN IGListIndexPathResult *IGListDiffPaths(NSInteger fromSection,
|
|
NSInteger toSection,
|
|
NSArray<id<IGListDiffable>> *_Nullable oldArray,
|
|
NSArray<id<IGListDiffable>> *_Nullable newArray,
|
|
IGListDiffOption option);
|
|
|
|
NS_ASSUME_NONNULL_END
|