├── .gitignore ├── .gitmodules ├── .swiftlint.yml ├── .travis.yml ├── CHANGELOG.md ├── Cartfile ├── Cartfile.resolved ├── Differentiator.podspec ├── Examples ├── Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── RxDataSources.xcscmblueprint │ └── xcshareddata │ │ └── xcschemes │ │ ├── Example.xcscheme │ │ └── ExampleUITests.xcscheme ├── Example │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── settings.imageset │ │ │ ├── Contents.json │ │ │ └── settings@2x.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Example1_CustomizationUsingTableViewDelegate.swift │ ├── Example2_RandomizedSectionsAnimation.swift │ ├── Example3_TableViewEditing.swift │ ├── Example4_DifferentSectionAndItemTypes.swift │ ├── Example5_UIPickerView.swift │ ├── Info.plist │ ├── Support │ │ ├── AppDelegate.swift │ │ ├── NumberSection.swift │ │ └── Randomizer.swift │ └── Views │ │ ├── ImageTitleTableViewCell.swift │ │ ├── TitleSteperTableViewCell.swift │ │ ├── TitleSwitchTableViewCell.swift │ │ └── UIKitExtensions.swift ├── ExampleUITests │ ├── ExampleUITests.swift │ └── Info.plist ├── RxSwift └── Sources ├── LICENSE.md ├── Package.resolved ├── Package.swift ├── README.md ├── RxDataSources.podspec ├── RxDataSources.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── RxDataSources.xcscmblueprint └── xcshareddata │ └── xcschemes │ ├── Differentiator.xcscheme │ ├── RxDataSources.xcscheme │ └── Tests.xcscheme ├── Sources ├── Differentiator │ ├── AnimatableSectionModel.swift │ ├── AnimatableSectionModelType+ItemPath.swift │ ├── AnimatableSectionModelType.swift │ ├── Changeset.swift │ ├── Diff.swift │ ├── Differentiator.h │ ├── IdentifiableType.swift │ ├── IdentifiableValue.swift │ ├── Info.plist │ ├── ItemPath.swift │ ├── Optional+Extensions.swift │ ├── SectionModel.swift │ ├── SectionModelType.swift │ └── Utilities.swift └── RxDataSources │ ├── AnimationConfiguration.swift │ ├── Array+Extensions.swift │ ├── CollectionViewSectionedDataSource.swift │ ├── DataSources.swift │ ├── Deprecated.swift │ ├── FloatingPointType+IdentifiableType.swift │ ├── Info.plist │ ├── IntegerType+IdentifiableType.swift │ ├── RxCollectionViewSectionedAnimatedDataSource.swift │ ├── RxCollectionViewSectionedReloadDataSource.swift │ ├── RxDataSources.h │ ├── RxPickerViewAdapter.swift │ ├── RxTableViewSectionedAnimatedDataSource.swift │ ├── RxTableViewSectionedReloadDataSource.swift │ ├── String+IdentifiableType.swift │ ├── TableViewSectionedDataSource.swift │ ├── UI+SectionedViewType.swift │ └── ViewTransition.swift └── Tests └── RxDataSourcesTests ├── AlgorithmTests.swift ├── Array+Extensions.swift ├── ChangeSet+TestExtensions.swift ├── Info.plist ├── NumberSection.swift ├── Randomizer.swift ├── RxCollectionViewSectionedDataSource+Test.swift ├── XCTest+Extensions.swift ├── i.swift └── s.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/.gitmodules -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- 1 | github "ReactiveX/RxSwift" ~> 6.0 2 | -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "ReactiveX/RxSwift" "6.0.0" 2 | -------------------------------------------------------------------------------- /Differentiator.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Differentiator.podspec -------------------------------------------------------------------------------- /Examples/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Examples/Example.xcodeproj/project.xcworkspace/xcshareddata/RxDataSources.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example.xcodeproj/project.xcworkspace/xcshareddata/RxDataSources.xcscmblueprint -------------------------------------------------------------------------------- /Examples/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /Examples/Example.xcodeproj/xcshareddata/xcschemes/ExampleUITests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example.xcodeproj/xcshareddata/xcschemes/ExampleUITests.xcscheme -------------------------------------------------------------------------------- /Examples/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/Example/Assets.xcassets/settings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example/Assets.xcassets/settings.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/Example/Assets.xcassets/settings.imageset/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example/Assets.xcassets/settings.imageset/settings@2x.png -------------------------------------------------------------------------------- /Examples/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Examples/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/Example/Example1_CustomizationUsingTableViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example/Example1_CustomizationUsingTableViewDelegate.swift -------------------------------------------------------------------------------- /Examples/Example/Example2_RandomizedSectionsAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example/Example2_RandomizedSectionsAnimation.swift -------------------------------------------------------------------------------- /Examples/Example/Example3_TableViewEditing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example/Example3_TableViewEditing.swift -------------------------------------------------------------------------------- /Examples/Example/Example4_DifferentSectionAndItemTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example/Example4_DifferentSectionAndItemTypes.swift -------------------------------------------------------------------------------- /Examples/Example/Example5_UIPickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example/Example5_UIPickerView.swift -------------------------------------------------------------------------------- /Examples/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example/Info.plist -------------------------------------------------------------------------------- /Examples/Example/Support/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example/Support/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/Example/Support/NumberSection.swift: -------------------------------------------------------------------------------- 1 | ../../../Tests/RxDataSourcesTests/NumberSection.swift -------------------------------------------------------------------------------- /Examples/Example/Support/Randomizer.swift: -------------------------------------------------------------------------------- 1 | ../../../Tests/RxDataSourcesTests/Randomizer.swift -------------------------------------------------------------------------------- /Examples/Example/Views/ImageTitleTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example/Views/ImageTitleTableViewCell.swift -------------------------------------------------------------------------------- /Examples/Example/Views/TitleSteperTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example/Views/TitleSteperTableViewCell.swift -------------------------------------------------------------------------------- /Examples/Example/Views/TitleSwitchTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example/Views/TitleSwitchTableViewCell.swift -------------------------------------------------------------------------------- /Examples/Example/Views/UIKitExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/Example/Views/UIKitExtensions.swift -------------------------------------------------------------------------------- /Examples/ExampleUITests/ExampleUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/ExampleUITests/ExampleUITests.swift -------------------------------------------------------------------------------- /Examples/ExampleUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Examples/ExampleUITests/Info.plist -------------------------------------------------------------------------------- /Examples/RxSwift: -------------------------------------------------------------------------------- 1 | ../Carthage/Checkouts/RxSwift -------------------------------------------------------------------------------- /Examples/Sources: -------------------------------------------------------------------------------- 1 | ../Sources -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/README.md -------------------------------------------------------------------------------- /RxDataSources.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/RxDataSources.podspec -------------------------------------------------------------------------------- /RxDataSources.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/RxDataSources.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RxDataSources.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/RxDataSources.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RxDataSources.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/RxDataSources.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /RxDataSources.xcodeproj/project.xcworkspace/xcshareddata/RxDataSources.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/RxDataSources.xcodeproj/project.xcworkspace/xcshareddata/RxDataSources.xcscmblueprint -------------------------------------------------------------------------------- /RxDataSources.xcodeproj/xcshareddata/xcschemes/Differentiator.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/RxDataSources.xcodeproj/xcshareddata/xcschemes/Differentiator.xcscheme -------------------------------------------------------------------------------- /RxDataSources.xcodeproj/xcshareddata/xcschemes/RxDataSources.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/RxDataSources.xcodeproj/xcshareddata/xcschemes/RxDataSources.xcscheme -------------------------------------------------------------------------------- /RxDataSources.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/RxDataSources.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme -------------------------------------------------------------------------------- /Sources/Differentiator/AnimatableSectionModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/Differentiator/AnimatableSectionModel.swift -------------------------------------------------------------------------------- /Sources/Differentiator/AnimatableSectionModelType+ItemPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/Differentiator/AnimatableSectionModelType+ItemPath.swift -------------------------------------------------------------------------------- /Sources/Differentiator/AnimatableSectionModelType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/Differentiator/AnimatableSectionModelType.swift -------------------------------------------------------------------------------- /Sources/Differentiator/Changeset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/Differentiator/Changeset.swift -------------------------------------------------------------------------------- /Sources/Differentiator/Diff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/Differentiator/Diff.swift -------------------------------------------------------------------------------- /Sources/Differentiator/Differentiator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/Differentiator/Differentiator.h -------------------------------------------------------------------------------- /Sources/Differentiator/IdentifiableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/Differentiator/IdentifiableType.swift -------------------------------------------------------------------------------- /Sources/Differentiator/IdentifiableValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/Differentiator/IdentifiableValue.swift -------------------------------------------------------------------------------- /Sources/Differentiator/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/Differentiator/Info.plist -------------------------------------------------------------------------------- /Sources/Differentiator/ItemPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/Differentiator/ItemPath.swift -------------------------------------------------------------------------------- /Sources/Differentiator/Optional+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/Differentiator/Optional+Extensions.swift -------------------------------------------------------------------------------- /Sources/Differentiator/SectionModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/Differentiator/SectionModel.swift -------------------------------------------------------------------------------- /Sources/Differentiator/SectionModelType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/Differentiator/SectionModelType.swift -------------------------------------------------------------------------------- /Sources/Differentiator/Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/Differentiator/Utilities.swift -------------------------------------------------------------------------------- /Sources/RxDataSources/AnimationConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/RxDataSources/AnimationConfiguration.swift -------------------------------------------------------------------------------- /Sources/RxDataSources/Array+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/RxDataSources/Array+Extensions.swift -------------------------------------------------------------------------------- /Sources/RxDataSources/CollectionViewSectionedDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/RxDataSources/CollectionViewSectionedDataSource.swift -------------------------------------------------------------------------------- /Sources/RxDataSources/DataSources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/RxDataSources/DataSources.swift -------------------------------------------------------------------------------- /Sources/RxDataSources/Deprecated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/RxDataSources/Deprecated.swift -------------------------------------------------------------------------------- /Sources/RxDataSources/FloatingPointType+IdentifiableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/RxDataSources/FloatingPointType+IdentifiableType.swift -------------------------------------------------------------------------------- /Sources/RxDataSources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/RxDataSources/Info.plist -------------------------------------------------------------------------------- /Sources/RxDataSources/IntegerType+IdentifiableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/RxDataSources/IntegerType+IdentifiableType.swift -------------------------------------------------------------------------------- /Sources/RxDataSources/RxCollectionViewSectionedAnimatedDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/RxDataSources/RxCollectionViewSectionedAnimatedDataSource.swift -------------------------------------------------------------------------------- /Sources/RxDataSources/RxCollectionViewSectionedReloadDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/RxDataSources/RxCollectionViewSectionedReloadDataSource.swift -------------------------------------------------------------------------------- /Sources/RxDataSources/RxDataSources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/RxDataSources/RxDataSources.h -------------------------------------------------------------------------------- /Sources/RxDataSources/RxPickerViewAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/RxDataSources/RxPickerViewAdapter.swift -------------------------------------------------------------------------------- /Sources/RxDataSources/RxTableViewSectionedAnimatedDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/RxDataSources/RxTableViewSectionedAnimatedDataSource.swift -------------------------------------------------------------------------------- /Sources/RxDataSources/RxTableViewSectionedReloadDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/RxDataSources/RxTableViewSectionedReloadDataSource.swift -------------------------------------------------------------------------------- /Sources/RxDataSources/String+IdentifiableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/RxDataSources/String+IdentifiableType.swift -------------------------------------------------------------------------------- /Sources/RxDataSources/TableViewSectionedDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/RxDataSources/TableViewSectionedDataSource.swift -------------------------------------------------------------------------------- /Sources/RxDataSources/UI+SectionedViewType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/RxDataSources/UI+SectionedViewType.swift -------------------------------------------------------------------------------- /Sources/RxDataSources/ViewTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Sources/RxDataSources/ViewTransition.swift -------------------------------------------------------------------------------- /Tests/RxDataSourcesTests/AlgorithmTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Tests/RxDataSourcesTests/AlgorithmTests.swift -------------------------------------------------------------------------------- /Tests/RxDataSourcesTests/Array+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Tests/RxDataSourcesTests/Array+Extensions.swift -------------------------------------------------------------------------------- /Tests/RxDataSourcesTests/ChangeSet+TestExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Tests/RxDataSourcesTests/ChangeSet+TestExtensions.swift -------------------------------------------------------------------------------- /Tests/RxDataSourcesTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Tests/RxDataSourcesTests/Info.plist -------------------------------------------------------------------------------- /Tests/RxDataSourcesTests/NumberSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Tests/RxDataSourcesTests/NumberSection.swift -------------------------------------------------------------------------------- /Tests/RxDataSourcesTests/Randomizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Tests/RxDataSourcesTests/Randomizer.swift -------------------------------------------------------------------------------- /Tests/RxDataSourcesTests/RxCollectionViewSectionedDataSource+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Tests/RxDataSourcesTests/RxCollectionViewSectionedDataSource+Test.swift -------------------------------------------------------------------------------- /Tests/RxDataSourcesTests/XCTest+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Tests/RxDataSourcesTests/XCTest+Extensions.swift -------------------------------------------------------------------------------- /Tests/RxDataSourcesTests/i.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Tests/RxDataSourcesTests/i.swift -------------------------------------------------------------------------------- /Tests/RxDataSourcesTests/s.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxDataSources/HEAD/Tests/RxDataSourcesTests/s.swift --------------------------------------------------------------------------------