├── .github └── workflows │ └── main.yml ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── Cartfile.private ├── Cartfile.resolved ├── Carthage └── Checkouts │ ├── DiffableDataSources │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ ├── BUG_REPORT.md │ │ │ ├── FEATURE_REQUEST.md │ │ │ └── QUESTION.md │ │ └── PULL_REQUEST_TEMPLATE.md │ ├── .gitignore │ ├── .gitmodules │ ├── .jazzy.yml │ ├── .swift-version │ ├── .swiftlint.yml │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── Cartfile │ ├── Cartfile.resolved │ ├── Carthage │ │ └── Checkouts │ │ │ └── DifferenceKit │ │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── BUG_REPORT.md │ │ │ │ ├── FEATURE_REQUEST.md │ │ │ │ └── QUESTION.md │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── .hound.yml │ │ │ ├── .jazzy.yaml │ │ │ ├── .swift-version │ │ │ ├── .swiftlint.yml │ │ │ ├── Benchmark │ │ │ ├── Benchmark.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Benchmark.xcscheme │ │ │ ├── Benchmark.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── Makefile │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── README.md │ │ │ └── Sources │ │ │ │ ├── BenchmarkTools.swift │ │ │ │ ├── Info.plist │ │ │ │ └── main.swift │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── DifferenceKit.playground │ │ │ ├── Contents.swift │ │ │ ├── Sources │ │ │ │ └── TableViewController.swift │ │ │ └── contents.xcplayground │ │ │ ├── DifferenceKit.podspec │ │ │ ├── DifferenceKit.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── DifferenceKit.xcscheme │ │ │ ├── DifferenceKit.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── Examples │ │ │ ├── Example-iOS │ │ │ │ ├── Example-iOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── Sources │ │ │ │ │ ├── AppDelegate.swift │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Base.lproj │ │ │ │ │ └── LaunchScreen.storyboard │ │ │ │ │ ├── Common │ │ │ │ │ ├── NibLoadable.swift │ │ │ │ │ ├── Reusable.swift │ │ │ │ │ ├── ReusableViewExtensions.swift │ │ │ │ │ └── StringExtensions.swift │ │ │ │ │ ├── HeaderFooter │ │ │ │ │ ├── HeaderFooterCell.swift │ │ │ │ │ ├── HeaderFooterMoreView.swift │ │ │ │ │ ├── HeaderFooterMoreView.xib │ │ │ │ │ ├── HeaderFooterSectionModel.swift │ │ │ │ │ └── HeaderFooterViewController.swift │ │ │ │ │ ├── Home │ │ │ │ │ ├── HomeCell.swift │ │ │ │ │ ├── HomeCell.xib │ │ │ │ │ └── HomeViewController.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Random │ │ │ │ │ ├── RandomLabelView.swift │ │ │ │ │ ├── RandomLabelView.xib │ │ │ │ │ ├── RandomModel.swift │ │ │ │ │ ├── RandomPlainCell.swift │ │ │ │ │ ├── RandomViewController.swift │ │ │ │ │ └── RandomViewController.xib │ │ │ │ │ └── ShuffleEmoticon │ │ │ │ │ ├── EmojiCell.swift │ │ │ │ │ ├── EmojiCell.xib │ │ │ │ │ ├── EmojiViewController.swift │ │ │ │ │ └── EmojiViewController.xib │ │ │ ├── Example-macOS │ │ │ │ ├── Example-macOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── Sources │ │ │ │ │ ├── AppDelegate.swift │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Base.lproj │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── ShuffleEmoticonCollectionViewItem.swift │ │ │ │ │ ├── ShuffleEmoticonViewController.swift │ │ │ │ │ └── StringExtensions.swift │ │ │ └── Example-tvOS │ │ │ │ ├── Example-tvOS.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── Sources │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ │ │ ├── App Icon - App Store.imagestack │ │ │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── App Icon.imagestack │ │ │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Top Shelf Image Wide.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Top Shelf Image.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ │ ├── EmojiCell.swift │ │ │ │ ├── EmojiCell.xib │ │ │ │ ├── EmojiViewController.swift │ │ │ │ ├── EmojiViewController.xib │ │ │ │ ├── Info.plist │ │ │ │ ├── NibLoadable.swift │ │ │ │ ├── Reusable.swift │ │ │ │ ├── ReusableViewExtensions.swift │ │ │ │ └── StringExtensions.swift │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── LICENSE │ │ │ ├── LinuxMain.swift │ │ │ ├── Makefile │ │ │ ├── Package.swift │ │ │ ├── Package@swift-4.2.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ ├── Algorithm.swift │ │ │ ├── AnyDifferentiable.swift │ │ │ ├── ArraySection.swift │ │ │ ├── Changeset.swift │ │ │ ├── ContentEquatable.swift │ │ │ ├── Differentiable.swift │ │ │ ├── DifferentiableSection.swift │ │ │ ├── ElementPath.swift │ │ │ ├── Extensions │ │ │ │ ├── AppKitExtension.swift │ │ │ │ └── UIKitExtension.swift │ │ │ ├── Info.plist │ │ │ └── StagedChangeset.swift │ │ │ ├── Tests │ │ │ ├── AlgorithmTest.swift │ │ │ ├── AnyDifferentiableTest.swift │ │ │ ├── ArraySectionTest.swift │ │ │ ├── ChangesetTest.swift │ │ │ ├── ContentEquatableTest.swift │ │ │ ├── ElementPathTest.swift │ │ │ ├── Info.plist │ │ │ ├── MeasurementTest.swift │ │ │ ├── StagedChangesetTest.swift │ │ │ ├── TestTools.swift │ │ │ └── XCTestManifests.swift │ │ │ ├── XCConfigs │ │ │ └── DifferenceKit.xcconfig │ │ │ ├── assets │ │ │ ├── logo.png │ │ │ └── sample.gif │ │ │ ├── azure-pipelines.yml │ │ │ ├── docs │ │ │ ├── Changeset.html │ │ │ ├── Diffing.html │ │ │ ├── Extensions │ │ │ │ ├── Optional.html │ │ │ │ ├── UICollectionView.html │ │ │ │ └── UITableView.html │ │ │ ├── Protocols │ │ │ │ ├── ContentEquatable.html │ │ │ │ ├── Differentiable.html │ │ │ │ └── DifferentiableSection.html │ │ │ ├── Structs │ │ │ │ ├── AnyDifferentiable.html │ │ │ │ ├── ArraySection.html │ │ │ │ ├── Changeset.html │ │ │ │ ├── ElementPath.html │ │ │ │ └── StagedChangeset.html │ │ │ ├── UI Extensions.html │ │ │ ├── badge.svg │ │ │ ├── css │ │ │ │ ├── highlight.css │ │ │ │ └── jazzy.css │ │ │ ├── img │ │ │ │ ├── carat.png │ │ │ │ ├── dash.png │ │ │ │ ├── gh.png │ │ │ │ └── spinner.gif │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── jazzy.js │ │ │ │ ├── jazzy.search.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── lunr.min.js │ │ │ │ └── typeahead.jquery.js │ │ │ └── search.json │ │ │ └── test-linux.sh │ ├── DiffableDataSources.podspec │ ├── DiffableDataSources.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── DiffableDataSources.xcscheme │ │ │ └── Tests.xcscheme │ ├── DiffableDataSources.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── Examples │ │ ├── DiffableDataSourcesExamples.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Example-iOS.xcscheme │ │ ├── DiffableDataSourcesExamples.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Example-iOS │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ │ └── LaunchScreen.storyboard │ │ │ ├── Extension.swift │ │ │ ├── Info.plist │ │ │ ├── InsertionSortViewController.swift │ │ │ ├── InsertionSortViewController.xib │ │ │ ├── LabelCell.swift │ │ │ ├── LabelCell.xib │ │ │ ├── MountainsViewController.swift │ │ │ ├── MountainsViewController.xib │ │ │ ├── TopViewController.swift │ │ │ └── TopViewController.xib │ │ ├── Example-macOS │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ │ └── Main.storyboard │ │ │ ├── Example_macOS.entitlements │ │ │ ├── Info.plist │ │ │ ├── LabelItem.swift │ │ │ └── MountainsViewController.swift │ │ ├── MountainsRawData.swift │ │ └── README.md │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── Makefile │ ├── Package.resolved │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ ├── AppKit │ │ │ └── CocoaCollectionViewDiffableDataSource.swift │ │ ├── DiffableDataSourceSnapshot.swift │ │ ├── Info.plist │ │ ├── Internal │ │ │ ├── DiffableDataSourceCore.swift │ │ │ ├── HashableExtension.swift │ │ │ ├── MainThreadSerialDispatcher.swift │ │ │ ├── SnapshotStructure.swift │ │ │ └── UniversalError.swift │ │ └── UIKit │ │ │ ├── CollectionViewDiffableDataSource.swift │ │ │ └── TableViewDiffableDataSource.swift │ ├── Tests │ │ ├── CocoaCollectionViewDiffableDataSourceTests.swift │ │ ├── CollectionViewDiffableDataSourceTests.swift │ │ ├── DiffableDataSourceTests.swift │ │ ├── Info.plist │ │ ├── MainThreadSerialDispatcherTests.swift │ │ └── TableViewDiffableDataSourceTests.swift │ ├── XCConfigs │ │ └── DiffableDataSources.xcconfig │ ├── assets │ │ ├── insertion_sort.gif │ │ └── mountains.gif │ ├── azure-pipelines.yml │ └── docs │ │ ├── Classes │ │ ├── CollectionViewDiffableDataSource.html │ │ └── TableViewDiffableDataSource.html │ │ ├── DataSources.html │ │ ├── Snapshot.html │ │ ├── Structs │ │ └── DiffableDataSourceSnapshot.html │ │ ├── badge.svg │ │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ ├── gh.png │ │ └── spinner.gif │ │ ├── index.html │ │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ │ └── search.json │ └── DifferenceKit │ ├── .github │ ├── ISSUE_TEMPLATE │ │ ├── BUG_REPORT.md │ │ ├── FEATURE_REQUEST.md │ │ └── QUESTION.md │ └── PULL_REQUEST_TEMPLATE.md │ ├── .gitignore │ ├── .hound.yml │ ├── .jazzy.yaml │ ├── .swift-version │ ├── .swiftlint.yml │ ├── Benchmark │ ├── Benchmark.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Benchmark.xcscheme │ ├── Benchmark.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ ├── Gemfile │ ├── Gemfile.lock │ ├── Makefile │ ├── Podfile │ ├── Podfile.lock │ ├── README.md │ └── Sources │ │ ├── BenchmarkTools.swift │ │ ├── Info.plist │ │ └── main.swift │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── DifferenceKit.playground │ ├── Contents.swift │ ├── Sources │ │ └── TableViewController.swift │ └── contents.xcplayground │ ├── DifferenceKit.podspec │ ├── DifferenceKit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── DifferenceKit.xcscheme │ ├── DifferenceKit.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ ├── Examples │ ├── Example-iOS │ │ ├── Example-iOS.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── Sources │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ │ ├── Common │ │ │ ├── NibLoadable.swift │ │ │ ├── Reusable.swift │ │ │ ├── ReusableViewExtensions.swift │ │ │ └── StringExtensions.swift │ │ │ ├── HeaderFooter │ │ │ ├── HeaderFooterCell.swift │ │ │ ├── HeaderFooterMoreView.swift │ │ │ ├── HeaderFooterMoreView.xib │ │ │ ├── HeaderFooterSectionModel.swift │ │ │ └── HeaderFooterViewController.swift │ │ │ ├── Home │ │ │ ├── HomeCell.swift │ │ │ ├── HomeCell.xib │ │ │ └── HomeViewController.swift │ │ │ ├── Info.plist │ │ │ ├── Random │ │ │ ├── RandomLabelView.swift │ │ │ ├── RandomLabelView.xib │ │ │ ├── RandomModel.swift │ │ │ ├── RandomPlainCell.swift │ │ │ ├── RandomViewController.swift │ │ │ └── RandomViewController.xib │ │ │ └── ShuffleEmoticon │ │ │ ├── EmojiCell.swift │ │ │ ├── EmojiCell.xib │ │ │ ├── EmojiViewController.swift │ │ │ └── EmojiViewController.xib │ ├── Example-macOS │ │ ├── Example-macOS.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── Sources │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ │ ├── Info.plist │ │ │ ├── ShuffleEmoticonCollectionViewItem.swift │ │ │ ├── ShuffleEmoticonViewController.swift │ │ │ └── StringExtensions.swift │ └── Example-tvOS │ │ ├── Example-tvOS.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - App Store.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Top Shelf Image Wide.imageset │ │ │ │ └── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── EmojiCell.swift │ │ ├── EmojiCell.xib │ │ ├── EmojiViewController.swift │ │ ├── EmojiViewController.xib │ │ ├── Info.plist │ │ ├── NibLoadable.swift │ │ ├── Reusable.swift │ │ ├── ReusableViewExtensions.swift │ │ └── StringExtensions.swift │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── LinuxMain.swift │ ├── Makefile │ ├── Package.swift │ ├── Package@swift-4.2.swift │ ├── README.md │ ├── Sources │ ├── Algorithm.swift │ ├── AnyDifferentiable.swift │ ├── ArraySection.swift │ ├── Changeset.swift │ ├── ContentEquatable.swift │ ├── Differentiable.swift │ ├── DifferentiableSection.swift │ ├── ElementPath.swift │ ├── Extensions │ │ ├── AppKitExtension.swift │ │ └── UIKitExtension.swift │ ├── Info.plist │ └── StagedChangeset.swift │ ├── Tests │ ├── AlgorithmTest.swift │ ├── AnyDifferentiableTest.swift │ ├── ArraySectionTest.swift │ ├── ChangesetTest.swift │ ├── ContentEquatableTest.swift │ ├── ElementPathTest.swift │ ├── Info.plist │ ├── MeasurementTest.swift │ ├── StagedChangesetTest.swift │ ├── TestTools.swift │ └── XCTestManifests.swift │ ├── XCConfigs │ └── DifferenceKit.xcconfig │ ├── assets │ ├── logo.png │ └── sample.gif │ ├── azure-pipelines.yml │ ├── docs │ ├── Changeset.html │ ├── Diffing.html │ ├── Extensions │ │ ├── Optional.html │ │ ├── UICollectionView.html │ │ └── UITableView.html │ ├── Protocols │ │ ├── ContentEquatable.html │ │ ├── Differentiable.html │ │ └── DifferentiableSection.html │ ├── Structs │ │ ├── AnyDifferentiable.html │ │ ├── ArraySection.html │ │ ├── Changeset.html │ │ ├── ElementPath.html │ │ └── StagedChangeset.html │ ├── UI Extensions.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ ├── gh.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ └── search.json │ └── test-linux.sh ├── Configurations ├── HostApp-Debug.xcconfig ├── HostApp-Release.xcconfig ├── HostApp-Shared.xcconfig ├── IBPCollectionViewCompositionalLayout.xcconfig ├── IBPCollectionViewCompositionalLayoutTests.xcconfig ├── Project-Debug.xcconfig ├── Project-Release.xcconfig └── Project-Shared.xcconfig ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Example.xcscheme └── Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── cat.imageset │ │ ├── Contents.json │ │ └── cat.jpg │ ├── chevron.left.imageset │ │ ├── Contents.json │ │ └── chevron.left.pdf │ └── chevron.right.imageset │ │ ├── Contents.json │ │ └── chevron.right.pdf │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Configurations │ ├── Example.xcconfig │ ├── Project-Debug.xcconfig │ ├── Project-Release.xcconfig │ └── Project-Shared.xcconfig │ ├── DiffableDataSourceInteroperability.swift │ ├── IBPCollectionViewCompositionalLayoutInteroperability.swift │ ├── Info.plist │ ├── Samples from Apple │ ├── Advanced Layouts View Controllers │ │ ├── NestedGroupsViewController.swift │ │ ├── OrthogonalScrollBehaviorViewController.swift │ │ └── OrthogonalScrollingViewController.swift │ ├── App Samples View Controllers │ │ ├── ConferenceNewsFeedViewController.swift │ │ └── ConferenceVideoSessionsViewController.swift │ ├── Basics View Controllers │ │ ├── AdaptiveSectionsViewController.swift │ │ ├── DistinctSectionsViewController.swift │ │ ├── GridViewController.swift │ │ ├── InsetItemsGridViewController.swift │ │ ├── ItemBadgeSupplementaryViewController.swift │ │ ├── ListViewController.swift │ │ ├── PinnedSectionHeaderFooterViewController.swift │ │ ├── SectionDecorationViewController.swift │ │ ├── SectionHeadersFootersViewController.swift │ │ └── TwoColumnViewController.swift │ ├── Cells and Supplementary Views │ │ ├── BadgeSupplementrayView.swift │ │ ├── ConferenceNewsFeedCell.swift │ │ ├── ConferenceVideoCell.swift │ │ ├── ListCell.swift │ │ ├── SectionBackgroundDecorationView.swift │ │ ├── TextCell.swift │ │ └── TitleSupplementaryView.swift │ ├── Controllers │ │ ├── ConferenceNewsController.swift │ │ └── ConferenceVideoController.swift │ ├── Diffable │ │ ├── Cells And Supplementary Views │ │ │ └── LabelCell.swift │ │ ├── InsertionSortViewController.swift │ │ ├── MountainsController.swift │ │ ├── MountainsRawData.swift │ │ └── MountainsViewController.swift │ └── InsertionSortArray.swift │ ├── Samples from IceFloe:UICollectionViewCompositionalLayout │ ├── Cells │ │ ├── ListCell2.swift │ │ └── ListCell2.xib │ ├── ViewControllers │ │ ├── BackgroundViewController.swift │ │ ├── CheckmarkGridViewController.swift │ │ ├── ComplexGroupViewController.swift │ │ ├── EdgedListViewController.swift │ │ ├── EstimatedGridViewController.swift │ │ ├── EstimatedListViewController.swift │ │ ├── HeaderFooterViewController.swift │ │ ├── ListViewController2.swift │ │ └── OrthoViewController.swift │ └── Views │ │ ├── BackgroundView.swift │ │ ├── CheckmarkView.swift │ │ ├── CheckmarkView.xib │ │ ├── TitleView.swift │ │ └── TitleView.xib │ ├── Samples from jVirus:compositional-layouts-kit │ ├── Cells │ │ ├── ImageCell.swift │ │ └── OutlineItemCell.swift │ ├── Compositional Layouts VCs │ │ ├── BannerTileGridViewController.swift │ │ ├── GalleryViewController.swift │ │ ├── GroupGridViewController.swift │ │ ├── MosaicReduxViewController.swift │ │ ├── MosaicViewController.swift │ │ ├── PortraitTileGridViewController.swift │ │ ├── ShowcaseGalleryViewController.swift │ │ ├── TileGalleryViewController.swift │ │ ├── TileGridViewController.swift │ │ └── WaterfallViewController.swift │ ├── Factories │ │ └── ImageFactory.swift │ ├── Models │ │ └── ImageModel.swift │ └── Protocols │ │ ├── Configurable.swift │ │ └── ReuseIdentifiable.swift │ ├── UIKitInteroperability.swift │ └── ViewController.swift ├── HostApp ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard └── Info.plist ├── IBPCollectionViewCompositionalLayout.podspec ├── IBPCollectionViewCompositionalLayout.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── HostApp.xcscheme │ └── IBPCollectionViewCompositionalLayout.xcscheme ├── IBPCollectionViewCompositionalLayout.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── IBPCollectionViewCompositionalLayoutInteroperability.swift ├── LICENSE ├── Package.swift ├── README.md ├── Sources ├── IBPCollectionViewCompositionalLayout │ ├── IBPCollectionCompositionalLayoutSolver.h │ ├── IBPCollectionCompositionalLayoutSolver.m │ ├── IBPCollectionCompositionalLayoutSolverResult.h │ ├── IBPCollectionCompositionalLayoutSolverResult.m │ ├── IBPCollectionViewOrthogonalScrollerEmbeddedScrollView.h │ ├── IBPCollectionViewOrthogonalScrollerEmbeddedScrollView.m │ ├── IBPCollectionViewOrthogonalScrollerSectionController.h │ ├── IBPCollectionViewOrthogonalScrollerSectionController.m │ ├── IBPNSCollectionLayoutAnchor.m │ ├── IBPNSCollectionLayoutAnchor_Private.h │ ├── IBPNSCollectionLayoutBoundarySupplementaryItem.m │ ├── IBPNSCollectionLayoutContainer.h │ ├── IBPNSCollectionLayoutContainer.m │ ├── IBPNSCollectionLayoutDecorationItem.m │ ├── IBPNSCollectionLayoutDimension.m │ ├── IBPNSCollectionLayoutEdgeSpacing.m │ ├── IBPNSCollectionLayoutEdgeSpacing_Private.h │ ├── IBPNSCollectionLayoutEnvironment.h │ ├── IBPNSCollectionLayoutEnvironment.m │ ├── IBPNSCollectionLayoutGroup.m │ ├── IBPNSCollectionLayoutGroupCustomItem.m │ ├── IBPNSCollectionLayoutGroup_Private.h │ ├── IBPNSCollectionLayoutItem.m │ ├── IBPNSCollectionLayoutItem_Private.h │ ├── IBPNSCollectionLayoutSection.m │ ├── IBPNSCollectionLayoutSection_Private.h │ ├── IBPNSCollectionLayoutSize.m │ ├── IBPNSCollectionLayoutSize_Private.h │ ├── IBPNSCollectionLayoutSpacing.m │ ├── IBPNSCollectionLayoutSpacing_Private.h │ ├── IBPNSCollectionLayoutSupplementaryItem.m │ ├── IBPNSCollectionLayoutSupplementaryItem_Private.h │ ├── IBPNSDirectionalEdgeInsets.m │ ├── IBPUICollectionViewCompositionalLayout.m │ ├── IBPUICollectionViewCompositionalLayoutConfiguration.m │ ├── IBPUICollectionViewCompositionalLayoutConfiguration_Private.h │ └── include │ │ ├── IBPCollectionViewCompositionalLayout.h │ │ ├── IBPNSCollectionLayoutAnchor.h │ │ ├── IBPNSCollectionLayoutBoundarySupplementaryItem.h │ │ ├── IBPNSCollectionLayoutContainer_Protocol.h │ │ ├── IBPNSCollectionLayoutDecorationItem.h │ │ ├── IBPNSCollectionLayoutDimension.h │ │ ├── IBPNSCollectionLayoutEdgeSpacing.h │ │ ├── IBPNSCollectionLayoutEnvironment_Protocol.h │ │ ├── IBPNSCollectionLayoutForwardCompatibility.h │ │ ├── IBPNSCollectionLayoutGroup.h │ │ ├── IBPNSCollectionLayoutGroupCustomItem.h │ │ ├── IBPNSCollectionLayoutItem.h │ │ ├── IBPNSCollectionLayoutSection.h │ │ ├── IBPNSCollectionLayoutSize.h │ │ ├── IBPNSCollectionLayoutSpacing.h │ │ ├── IBPNSCollectionLayoutSupplementaryItem.h │ │ ├── IBPNSCollectionLayoutVisibleItem.h │ │ ├── IBPNSDirectionalEdgeInsets.h │ │ ├── IBPNSDirectionalRectEdge.h │ │ ├── IBPNSRectAlignment.h │ │ ├── IBPUICollectionLayoutSectionOrthogonalScrollingBehavior.h │ │ ├── IBPUICollectionViewCompositionalLayout.h │ │ ├── IBPUICollectionViewCompositionalLayoutConfiguration.h │ │ └── module.modulemap └── Info.plist ├── Tests ├── IBPCollectionViewCompositionalLayoutTests │ ├── Assets.xcassets │ │ ├── Contents.json │ │ ├── chevron.left.imageset │ │ │ ├── Contents.json │ │ │ └── chevron.left.pdf │ │ └── chevron.right.imageset │ │ │ ├── Contents.json │ │ │ └── chevron.right.pdf │ ├── DiffableDataSourceInteroperability.swift │ ├── IBPCollectionViewCompositionalLayoutInteroperability.swift │ ├── ListViewTests.swift │ └── UIKitInteroperability.swift └── Info.plist └── azure-pipelines.yml /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Cartfile.private: -------------------------------------------------------------------------------- 1 | github "ra1028/DiffableDataSources" 2 | -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/.github/ISSUE_TEMPLATE/QUESTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/.github/ISSUE_TEMPLATE/QUESTION.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/.gitmodules -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/.jazzy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/.jazzy.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/.swiftlint.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Cartfile: -------------------------------------------------------------------------------- 1 | github "ra1028/DifferenceKit" ~> 1.1 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "ra1028/DifferenceKit" "1.1.3" 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/.github/ISSUE_TEMPLATE/QUESTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/.github/ISSUE_TEMPLATE/QUESTION.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/.hound.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/.jazzy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/.jazzy.yaml -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/.swift-version: -------------------------------------------------------------------------------- 1 | 4.2 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/.swiftlint.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/Benchmark.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/Benchmark.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/Benchmark.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/Benchmark.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/Benchmark.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/Benchmark.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem 'cocoapods', '1.7.0.rc.1' 4 | -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/Gemfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/Makefile -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/Podfile -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/Podfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/Sources/BenchmarkTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/Sources/BenchmarkTools.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/Sources/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Benchmark/Sources/main.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/DifferenceKit.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/DifferenceKit.playground/Contents.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/DifferenceKit.playground/Sources/TableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/DifferenceKit.playground/Sources/TableViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/DifferenceKit.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/DifferenceKit.playground/contents.xcplayground -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/DifferenceKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/DifferenceKit.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/DifferenceKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/DifferenceKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/DifferenceKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/DifferenceKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/DifferenceKit.xcodeproj/xcshareddata/xcschemes/DifferenceKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/DifferenceKit.xcodeproj/xcshareddata/xcschemes/DifferenceKit.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/DifferenceKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/DifferenceKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/DifferenceKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/DifferenceKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Example-iOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Example-iOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Common/NibLoadable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Common/NibLoadable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Common/Reusable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Common/Reusable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Common/ReusableViewExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Common/ReusableViewExtensions.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Common/StringExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Common/StringExtensions.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/HeaderFooter/HeaderFooterCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/HeaderFooter/HeaderFooterCell.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/HeaderFooter/HeaderFooterMoreView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/HeaderFooter/HeaderFooterMoreView.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/HeaderFooter/HeaderFooterMoreView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/HeaderFooter/HeaderFooterMoreView.xib -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Home/HomeCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Home/HomeCell.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Home/HomeCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Home/HomeCell.xib -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Home/HomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Home/HomeViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomLabelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomLabelView.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomLabelView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomLabelView.xib -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomModel.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomPlainCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomPlainCell.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomViewController.xib -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/ShuffleEmoticon/EmojiCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/ShuffleEmoticon/EmojiCell.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/ShuffleEmoticon/EmojiCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/ShuffleEmoticon/EmojiCell.xib -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/ShuffleEmoticon/EmojiViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/ShuffleEmoticon/EmojiViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/ShuffleEmoticon/EmojiViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/ShuffleEmoticon/EmojiViewController.xib -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Example-macOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Example-macOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/ShuffleEmoticonViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/ShuffleEmoticonViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/StringExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/StringExtensions.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Example-tvOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Example-tvOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/EmojiCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/EmojiCell.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/EmojiCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/EmojiCell.xib -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/EmojiViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/EmojiViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/EmojiViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/EmojiViewController.xib -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/NibLoadable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/NibLoadable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/Reusable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/Reusable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/ReusableViewExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/ReusableViewExtensions.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/StringExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/StringExtensions.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Gemfile -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Gemfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/LinuxMain.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Makefile -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Package@swift-4.2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Package@swift-4.2.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/Algorithm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/Algorithm.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/AnyDifferentiable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/AnyDifferentiable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/ArraySection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/ArraySection.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/Changeset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/Changeset.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/ContentEquatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/ContentEquatable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/Differentiable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/Differentiable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/DifferentiableSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/DifferentiableSection.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/ElementPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/ElementPath.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/Extensions/AppKitExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/Extensions/AppKitExtension.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/Extensions/UIKitExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/Extensions/UIKitExtension.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/StagedChangeset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Sources/StagedChangeset.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Tests/AlgorithmTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Tests/AlgorithmTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Tests/AnyDifferentiableTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Tests/AnyDifferentiableTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Tests/ArraySectionTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Tests/ArraySectionTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Tests/ChangesetTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Tests/ChangesetTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Tests/ContentEquatableTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Tests/ContentEquatableTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Tests/ElementPathTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Tests/ElementPathTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Tests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Tests/MeasurementTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Tests/MeasurementTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Tests/StagedChangesetTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Tests/StagedChangesetTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Tests/TestTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Tests/TestTools.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Tests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/Tests/XCTestManifests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/XCConfigs/DifferenceKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/XCConfigs/DifferenceKit.xcconfig -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/assets/logo.png -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/assets/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/assets/sample.gif -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/azure-pipelines.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Changeset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Changeset.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Diffing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Diffing.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Extensions/Optional.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Extensions/Optional.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Extensions/UICollectionView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Extensions/UICollectionView.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Extensions/UITableView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Extensions/UITableView.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Protocols/ContentEquatable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Protocols/ContentEquatable.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Protocols/Differentiable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Protocols/Differentiable.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Protocols/DifferentiableSection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Protocols/DifferentiableSection.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Structs/AnyDifferentiable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Structs/AnyDifferentiable.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Structs/ArraySection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Structs/ArraySection.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Structs/Changeset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Structs/Changeset.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Structs/ElementPath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Structs/ElementPath.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Structs/StagedChangeset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/Structs/StagedChangeset.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/UI Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/UI Extensions.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/badge.svg -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/css/highlight.css -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/css/jazzy.css -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/img/carat.png -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/img/dash.png -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/img/gh.png -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/img/spinner.gif -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/index.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/js/jazzy.js -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/js/jazzy.search.js -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/js/jquery.min.js -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/js/lunr.min.js -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/js/typeahead.jquery.js -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/docs/search.json -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/test-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Carthage/Checkouts/DifferenceKit/test-linux.sh -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/DiffableDataSources.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/DiffableDataSources.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/DiffableDataSources.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/DiffableDataSources.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/DiffableDataSources.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/DiffableDataSources.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/DiffableDataSources.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/DiffableDataSources.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/DiffableDataSources.xcodeproj/xcshareddata/xcschemes/DiffableDataSources.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/DiffableDataSources.xcodeproj/xcshareddata/xcschemes/DiffableDataSources.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/DiffableDataSources.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/DiffableDataSources.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/DiffableDataSources.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/DiffableDataSources.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/DiffableDataSources.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/DiffableDataSources.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/DiffableDataSourcesExamples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/DiffableDataSourcesExamples.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/DiffableDataSourcesExamples.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/DiffableDataSourcesExamples.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/DiffableDataSourcesExamples.xcodeproj/xcshareddata/xcschemes/Example-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/DiffableDataSourcesExamples.xcodeproj/xcshareddata/xcschemes/Example-iOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/DiffableDataSourcesExamples.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/DiffableDataSourcesExamples.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/DiffableDataSourcesExamples.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/DiffableDataSourcesExamples.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/AppDelegate.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/Extension.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/InsertionSortViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/InsertionSortViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/InsertionSortViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/InsertionSortViewController.xib -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/LabelCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/LabelCell.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/LabelCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/LabelCell.xib -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/MountainsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/MountainsViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/MountainsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/MountainsViewController.xib -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/TopViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/TopViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/TopViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/Example-iOS/TopViewController.xib -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/Example-macOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/Example-macOS/AppDelegate.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/Example-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/Example-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/Example-macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/Example-macOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/Example-macOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/Example-macOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/Example-macOS/Example_macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/Example-macOS/Example_macOS.entitlements -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/Example-macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/Example-macOS/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/Example-macOS/LabelItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/Example-macOS/LabelItem.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/Example-macOS/MountainsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/Example-macOS/MountainsViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/MountainsRawData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/MountainsRawData.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Examples/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Gemfile -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Gemfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Makefile -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Package.resolved -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Sources/AppKit/CocoaCollectionViewDiffableDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Sources/AppKit/CocoaCollectionViewDiffableDataSource.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Sources/DiffableDataSourceSnapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Sources/DiffableDataSourceSnapshot.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Sources/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Sources/Internal/DiffableDataSourceCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Sources/Internal/DiffableDataSourceCore.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Sources/Internal/HashableExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Sources/Internal/HashableExtension.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Sources/Internal/MainThreadSerialDispatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Sources/Internal/MainThreadSerialDispatcher.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Sources/Internal/SnapshotStructure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Sources/Internal/SnapshotStructure.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Sources/Internal/UniversalError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Sources/Internal/UniversalError.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Sources/UIKit/CollectionViewDiffableDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Sources/UIKit/CollectionViewDiffableDataSource.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Sources/UIKit/TableViewDiffableDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Sources/UIKit/TableViewDiffableDataSource.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Tests/CocoaCollectionViewDiffableDataSourceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Tests/CocoaCollectionViewDiffableDataSourceTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Tests/CollectionViewDiffableDataSourceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Tests/CollectionViewDiffableDataSourceTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Tests/DiffableDataSourceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Tests/DiffableDataSourceTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Tests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Tests/MainThreadSerialDispatcherTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Tests/MainThreadSerialDispatcherTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/Tests/TableViewDiffableDataSourceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/Tests/TableViewDiffableDataSourceTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/XCConfigs/DiffableDataSources.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/XCConfigs/DiffableDataSources.xcconfig -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/assets/insertion_sort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/assets/insertion_sort.gif -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/assets/mountains.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/assets/mountains.gif -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/azure-pipelines.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/docs/Classes/CollectionViewDiffableDataSource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/docs/Classes/CollectionViewDiffableDataSource.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/docs/Classes/TableViewDiffableDataSource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/docs/Classes/TableViewDiffableDataSource.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/docs/DataSources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/docs/DataSources.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/docs/Snapshot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/docs/Snapshot.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/docs/Structs/DiffableDataSourceSnapshot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/docs/Structs/DiffableDataSourceSnapshot.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/docs/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/docs/badge.svg -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/docs/css/highlight.css -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/docs/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/docs/css/jazzy.css -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/docs/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/docs/img/carat.png -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/docs/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/docs/img/dash.png -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/docs/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/docs/img/gh.png -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/docs/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/docs/img/spinner.gif -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/docs/index.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/docs/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/docs/js/jazzy.js -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/docs/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/docs/js/jazzy.search.js -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/docs/js/jquery.min.js -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/docs/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/docs/js/lunr.min.js -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/docs/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/docs/js/typeahead.jquery.js -------------------------------------------------------------------------------- /Carthage/Checkouts/DiffableDataSources/docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DiffableDataSources/docs/search.json -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/.github/ISSUE_TEMPLATE/QUESTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/.github/ISSUE_TEMPLATE/QUESTION.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/.hound.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/.jazzy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/.jazzy.yaml -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/.swift-version: -------------------------------------------------------------------------------- 1 | 4.2 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/.swiftlint.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Benchmark/Benchmark.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Benchmark/Benchmark.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Benchmark/Benchmark.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Benchmark/Benchmark.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Benchmark/Benchmark.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Benchmark/Benchmark.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Benchmark/Benchmark.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Benchmark/Benchmark.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Benchmark/Benchmark.xcodeproj/xcshareddata/xcschemes/Benchmark.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Benchmark/Benchmark.xcodeproj/xcshareddata/xcschemes/Benchmark.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Benchmark/Benchmark.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Benchmark/Benchmark.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Benchmark/Benchmark.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Benchmark/Benchmark.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Benchmark/Benchmark.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Benchmark/Benchmark.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Benchmark/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem 'cocoapods', '1.7.0.rc.1' 4 | -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Benchmark/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Benchmark/Gemfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Benchmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Benchmark/Makefile -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Benchmark/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Benchmark/Podfile -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Benchmark/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Benchmark/Podfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Benchmark/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Benchmark/Sources/BenchmarkTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Benchmark/Sources/BenchmarkTools.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Benchmark/Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Benchmark/Sources/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Benchmark/Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Benchmark/Sources/main.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/DifferenceKit.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/DifferenceKit.playground/Contents.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/DifferenceKit.playground/Sources/TableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/DifferenceKit.playground/Sources/TableViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/DifferenceKit.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/DifferenceKit.playground/contents.xcplayground -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/DifferenceKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/DifferenceKit.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/DifferenceKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/DifferenceKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/DifferenceKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/DifferenceKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/DifferenceKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/DifferenceKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/DifferenceKit.xcodeproj/xcshareddata/xcschemes/DifferenceKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/DifferenceKit.xcodeproj/xcshareddata/xcschemes/DifferenceKit.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/DifferenceKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/DifferenceKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/DifferenceKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/DifferenceKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Example-iOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Example-iOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Example-iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Example-iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Example-iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Example-iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Common/NibLoadable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Common/NibLoadable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Common/Reusable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Common/Reusable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Common/ReusableViewExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Common/ReusableViewExtensions.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Common/StringExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Common/StringExtensions.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/HeaderFooter/HeaderFooterCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/HeaderFooter/HeaderFooterCell.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/HeaderFooter/HeaderFooterMoreView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/HeaderFooter/HeaderFooterMoreView.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/HeaderFooter/HeaderFooterMoreView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/HeaderFooter/HeaderFooterMoreView.xib -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/HeaderFooter/HeaderFooterSectionModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/HeaderFooter/HeaderFooterSectionModel.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/HeaderFooter/HeaderFooterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/HeaderFooter/HeaderFooterViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Home/HomeCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Home/HomeCell.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Home/HomeCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Home/HomeCell.xib -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Home/HomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Home/HomeViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomLabelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomLabelView.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomLabelView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomLabelView.xib -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomModel.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomPlainCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomPlainCell.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/Random/RandomViewController.xib -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/ShuffleEmoticon/EmojiCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/ShuffleEmoticon/EmojiCell.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/ShuffleEmoticon/EmojiCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/ShuffleEmoticon/EmojiCell.xib -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/ShuffleEmoticon/EmojiViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/ShuffleEmoticon/EmojiViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/ShuffleEmoticon/EmojiViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-iOS/Sources/ShuffleEmoticon/EmojiViewController.xib -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Example-macOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Example-macOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Example-macOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Example-macOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Example-macOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Example-macOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/ShuffleEmoticonCollectionViewItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/ShuffleEmoticonCollectionViewItem.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/ShuffleEmoticonViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/ShuffleEmoticonViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/StringExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-macOS/Sources/StringExtensions.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Example-tvOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Example-tvOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Example-tvOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Example-tvOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Example-tvOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Example-tvOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/EmojiCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/EmojiCell.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/EmojiCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/EmojiCell.xib -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/EmojiViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/EmojiViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/EmojiViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/EmojiViewController.xib -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/NibLoadable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/NibLoadable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/Reusable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/Reusable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/ReusableViewExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/ReusableViewExtensions.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/StringExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Examples/Example-tvOS/Sources/StringExtensions.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Gemfile -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Gemfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/LinuxMain.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Makefile -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Package@swift-4.2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Package@swift-4.2.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Sources/Algorithm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Sources/Algorithm.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Sources/AnyDifferentiable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Sources/AnyDifferentiable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Sources/ArraySection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Sources/ArraySection.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Sources/Changeset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Sources/Changeset.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Sources/ContentEquatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Sources/ContentEquatable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Sources/Differentiable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Sources/Differentiable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Sources/DifferentiableSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Sources/DifferentiableSection.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Sources/ElementPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Sources/ElementPath.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Sources/Extensions/AppKitExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Sources/Extensions/AppKitExtension.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Sources/Extensions/UIKitExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Sources/Extensions/UIKitExtension.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Sources/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Sources/StagedChangeset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Sources/StagedChangeset.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Tests/AlgorithmTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Tests/AlgorithmTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Tests/AnyDifferentiableTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Tests/AnyDifferentiableTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Tests/ArraySectionTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Tests/ArraySectionTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Tests/ChangesetTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Tests/ChangesetTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Tests/ContentEquatableTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Tests/ContentEquatableTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Tests/ElementPathTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Tests/ElementPathTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Tests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Tests/MeasurementTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Tests/MeasurementTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Tests/StagedChangesetTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Tests/StagedChangesetTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Tests/TestTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Tests/TestTools.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/Tests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/Tests/XCTestManifests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/XCConfigs/DifferenceKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/XCConfigs/DifferenceKit.xcconfig -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/assets/logo.png -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/assets/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/assets/sample.gif -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/azure-pipelines.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/Changeset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/Changeset.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/Diffing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/Diffing.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/Extensions/Optional.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/Extensions/Optional.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/Extensions/UICollectionView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/Extensions/UICollectionView.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/Extensions/UITableView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/Extensions/UITableView.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/Protocols/ContentEquatable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/Protocols/ContentEquatable.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/Protocols/Differentiable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/Protocols/Differentiable.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/Protocols/DifferentiableSection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/Protocols/DifferentiableSection.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/Structs/AnyDifferentiable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/Structs/AnyDifferentiable.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/Structs/ArraySection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/Structs/ArraySection.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/Structs/Changeset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/Structs/Changeset.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/Structs/ElementPath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/Structs/ElementPath.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/Structs/StagedChangeset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/Structs/StagedChangeset.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/UI Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/UI Extensions.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/badge.svg -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/css/highlight.css -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/css/jazzy.css -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/img/carat.png -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/img/dash.png -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/img/gh.png -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/img/spinner.gif -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/index.html -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/js/jazzy.js -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/js/jazzy.search.js -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/js/jquery.min.js -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/js/lunr.min.js -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/js/typeahead.jquery.js -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/docs/search.json -------------------------------------------------------------------------------- /Carthage/Checkouts/DifferenceKit/test-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Carthage/Checkouts/DifferenceKit/test-linux.sh -------------------------------------------------------------------------------- /Configurations/HostApp-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Configurations/HostApp-Debug.xcconfig -------------------------------------------------------------------------------- /Configurations/HostApp-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Configurations/HostApp-Release.xcconfig -------------------------------------------------------------------------------- /Configurations/HostApp-Shared.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Configurations/HostApp-Shared.xcconfig -------------------------------------------------------------------------------- /Configurations/IBPCollectionViewCompositionalLayout.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Configurations/IBPCollectionViewCompositionalLayout.xcconfig -------------------------------------------------------------------------------- /Configurations/IBPCollectionViewCompositionalLayoutTests.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Configurations/IBPCollectionViewCompositionalLayoutTests.xcconfig -------------------------------------------------------------------------------- /Configurations/Project-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Configurations/Project-Debug.xcconfig -------------------------------------------------------------------------------- /Configurations/Project-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Configurations/Project-Release.xcconfig -------------------------------------------------------------------------------- /Configurations/Project-Shared.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Configurations/Project-Shared.xcconfig -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /Example/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/cat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Assets.xcassets/cat.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/cat.imageset/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Assets.xcassets/cat.imageset/cat.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/chevron.left.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Assets.xcassets/chevron.left.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/chevron.left.imageset/chevron.left.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Assets.xcassets/chevron.left.imageset/chevron.left.pdf -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/chevron.right.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Assets.xcassets/chevron.right.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/chevron.right.imageset/chevron.right.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Assets.xcassets/chevron.right.imageset/chevron.right.pdf -------------------------------------------------------------------------------- /Example/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example/Configurations/Example.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Configurations/Example.xcconfig -------------------------------------------------------------------------------- /Example/Example/Configurations/Project-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Configurations/Project-Debug.xcconfig -------------------------------------------------------------------------------- /Example/Example/Configurations/Project-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Configurations/Project-Release.xcconfig -------------------------------------------------------------------------------- /Example/Example/Configurations/Project-Shared.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Configurations/Project-Shared.xcconfig -------------------------------------------------------------------------------- /Example/Example/DiffableDataSourceInteroperability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/DiffableDataSourceInteroperability.swift -------------------------------------------------------------------------------- /Example/Example/IBPCollectionViewCompositionalLayoutInteroperability.swift: -------------------------------------------------------------------------------- 1 | ../../IBPCollectionViewCompositionalLayoutInteroperability.swift -------------------------------------------------------------------------------- /Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Info.plist -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Advanced Layouts View Controllers/NestedGroupsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Advanced Layouts View Controllers/NestedGroupsViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Advanced Layouts View Controllers/OrthogonalScrollBehaviorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Advanced Layouts View Controllers/OrthogonalScrollBehaviorViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Advanced Layouts View Controllers/OrthogonalScrollingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Advanced Layouts View Controllers/OrthogonalScrollingViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/App Samples View Controllers/ConferenceNewsFeedViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/App Samples View Controllers/ConferenceNewsFeedViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/App Samples View Controllers/ConferenceVideoSessionsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/App Samples View Controllers/ConferenceVideoSessionsViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Basics View Controllers/AdaptiveSectionsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Basics View Controllers/AdaptiveSectionsViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Basics View Controllers/DistinctSectionsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Basics View Controllers/DistinctSectionsViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Basics View Controllers/GridViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Basics View Controllers/GridViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Basics View Controllers/InsetItemsGridViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Basics View Controllers/InsetItemsGridViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Basics View Controllers/ItemBadgeSupplementaryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Basics View Controllers/ItemBadgeSupplementaryViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Basics View Controllers/ListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Basics View Controllers/ListViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Basics View Controllers/PinnedSectionHeaderFooterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Basics View Controllers/PinnedSectionHeaderFooterViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Basics View Controllers/SectionDecorationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Basics View Controllers/SectionDecorationViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Basics View Controllers/SectionHeadersFootersViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Basics View Controllers/SectionHeadersFootersViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Basics View Controllers/TwoColumnViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Basics View Controllers/TwoColumnViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Cells and Supplementary Views/BadgeSupplementrayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Cells and Supplementary Views/BadgeSupplementrayView.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Cells and Supplementary Views/ConferenceNewsFeedCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Cells and Supplementary Views/ConferenceNewsFeedCell.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Cells and Supplementary Views/ConferenceVideoCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Cells and Supplementary Views/ConferenceVideoCell.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Cells and Supplementary Views/ListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Cells and Supplementary Views/ListCell.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Cells and Supplementary Views/SectionBackgroundDecorationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Cells and Supplementary Views/SectionBackgroundDecorationView.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Cells and Supplementary Views/TextCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Cells and Supplementary Views/TextCell.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Cells and Supplementary Views/TitleSupplementaryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Cells and Supplementary Views/TitleSupplementaryView.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Controllers/ConferenceNewsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Controllers/ConferenceNewsController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Controllers/ConferenceVideoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Controllers/ConferenceVideoController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Diffable/Cells And Supplementary Views/LabelCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Diffable/Cells And Supplementary Views/LabelCell.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Diffable/InsertionSortViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Diffable/InsertionSortViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Diffable/MountainsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Diffable/MountainsController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Diffable/MountainsRawData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Diffable/MountainsRawData.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/Diffable/MountainsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/Diffable/MountainsViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from Apple/InsertionSortArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from Apple/InsertionSortArray.swift -------------------------------------------------------------------------------- /Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/Cells/ListCell2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/Cells/ListCell2.swift -------------------------------------------------------------------------------- /Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/Cells/ListCell2.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/Cells/ListCell2.xib -------------------------------------------------------------------------------- /Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/ViewControllers/BackgroundViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/ViewControllers/BackgroundViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/ViewControllers/CheckmarkGridViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/ViewControllers/CheckmarkGridViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/ViewControllers/ComplexGroupViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/ViewControllers/ComplexGroupViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/ViewControllers/EdgedListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/ViewControllers/EdgedListViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/ViewControllers/EstimatedGridViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/ViewControllers/EstimatedGridViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/ViewControllers/EstimatedListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/ViewControllers/EstimatedListViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/ViewControllers/HeaderFooterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/ViewControllers/HeaderFooterViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/ViewControllers/ListViewController2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/ViewControllers/ListViewController2.swift -------------------------------------------------------------------------------- /Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/ViewControllers/OrthoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/ViewControllers/OrthoViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/Views/BackgroundView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/Views/BackgroundView.swift -------------------------------------------------------------------------------- /Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/Views/CheckmarkView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/Views/CheckmarkView.swift -------------------------------------------------------------------------------- /Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/Views/CheckmarkView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/Views/CheckmarkView.xib -------------------------------------------------------------------------------- /Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/Views/TitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/Views/TitleView.swift -------------------------------------------------------------------------------- /Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/Views/TitleView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from IceFloe:UICollectionViewCompositionalLayout/Views/TitleView.xib -------------------------------------------------------------------------------- /Example/Example/Samples from jVirus:compositional-layouts-kit/Cells/ImageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from jVirus:compositional-layouts-kit/Cells/ImageCell.swift -------------------------------------------------------------------------------- /Example/Example/Samples from jVirus:compositional-layouts-kit/Cells/OutlineItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from jVirus:compositional-layouts-kit/Cells/OutlineItemCell.swift -------------------------------------------------------------------------------- /Example/Example/Samples from jVirus:compositional-layouts-kit/Compositional Layouts VCs/BannerTileGridViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from jVirus:compositional-layouts-kit/Compositional Layouts VCs/BannerTileGridViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from jVirus:compositional-layouts-kit/Compositional Layouts VCs/GalleryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from jVirus:compositional-layouts-kit/Compositional Layouts VCs/GalleryViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from jVirus:compositional-layouts-kit/Compositional Layouts VCs/GroupGridViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from jVirus:compositional-layouts-kit/Compositional Layouts VCs/GroupGridViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from jVirus:compositional-layouts-kit/Compositional Layouts VCs/MosaicReduxViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from jVirus:compositional-layouts-kit/Compositional Layouts VCs/MosaicReduxViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from jVirus:compositional-layouts-kit/Compositional Layouts VCs/MosaicViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from jVirus:compositional-layouts-kit/Compositional Layouts VCs/MosaicViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from jVirus:compositional-layouts-kit/Compositional Layouts VCs/PortraitTileGridViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from jVirus:compositional-layouts-kit/Compositional Layouts VCs/PortraitTileGridViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from jVirus:compositional-layouts-kit/Compositional Layouts VCs/ShowcaseGalleryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from jVirus:compositional-layouts-kit/Compositional Layouts VCs/ShowcaseGalleryViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from jVirus:compositional-layouts-kit/Compositional Layouts VCs/TileGalleryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from jVirus:compositional-layouts-kit/Compositional Layouts VCs/TileGalleryViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from jVirus:compositional-layouts-kit/Compositional Layouts VCs/TileGridViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from jVirus:compositional-layouts-kit/Compositional Layouts VCs/TileGridViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from jVirus:compositional-layouts-kit/Compositional Layouts VCs/WaterfallViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from jVirus:compositional-layouts-kit/Compositional Layouts VCs/WaterfallViewController.swift -------------------------------------------------------------------------------- /Example/Example/Samples from jVirus:compositional-layouts-kit/Factories/ImageFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from jVirus:compositional-layouts-kit/Factories/ImageFactory.swift -------------------------------------------------------------------------------- /Example/Example/Samples from jVirus:compositional-layouts-kit/Models/ImageModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from jVirus:compositional-layouts-kit/Models/ImageModel.swift -------------------------------------------------------------------------------- /Example/Example/Samples from jVirus:compositional-layouts-kit/Protocols/Configurable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from jVirus:compositional-layouts-kit/Protocols/Configurable.swift -------------------------------------------------------------------------------- /Example/Example/Samples from jVirus:compositional-layouts-kit/Protocols/ReuseIdentifiable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/Samples from jVirus:compositional-layouts-kit/Protocols/ReuseIdentifiable.swift -------------------------------------------------------------------------------- /Example/Example/UIKitInteroperability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/UIKitInteroperability.swift -------------------------------------------------------------------------------- /Example/Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Example/Example/ViewController.swift -------------------------------------------------------------------------------- /HostApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/HostApp/AppDelegate.swift -------------------------------------------------------------------------------- /HostApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/HostApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HostApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/HostApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /HostApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/HostApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HostApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/HostApp/Info.plist -------------------------------------------------------------------------------- /IBPCollectionViewCompositionalLayout.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/IBPCollectionViewCompositionalLayout.podspec -------------------------------------------------------------------------------- /IBPCollectionViewCompositionalLayout.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/IBPCollectionViewCompositionalLayout.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /IBPCollectionViewCompositionalLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/IBPCollectionViewCompositionalLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /IBPCollectionViewCompositionalLayout.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/IBPCollectionViewCompositionalLayout.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /IBPCollectionViewCompositionalLayout.xcodeproj/xcshareddata/xcschemes/HostApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/IBPCollectionViewCompositionalLayout.xcodeproj/xcshareddata/xcschemes/HostApp.xcscheme -------------------------------------------------------------------------------- /IBPCollectionViewCompositionalLayout.xcodeproj/xcshareddata/xcschemes/IBPCollectionViewCompositionalLayout.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/IBPCollectionViewCompositionalLayout.xcodeproj/xcshareddata/xcschemes/IBPCollectionViewCompositionalLayout.xcscheme -------------------------------------------------------------------------------- /IBPCollectionViewCompositionalLayout.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/IBPCollectionViewCompositionalLayout.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /IBPCollectionViewCompositionalLayout.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/IBPCollectionViewCompositionalLayout.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /IBPCollectionViewCompositionalLayoutInteroperability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/IBPCollectionViewCompositionalLayoutInteroperability.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/README.md -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPCollectionCompositionalLayoutSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPCollectionCompositionalLayoutSolver.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPCollectionCompositionalLayoutSolver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPCollectionCompositionalLayoutSolver.m -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPCollectionCompositionalLayoutSolverResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPCollectionCompositionalLayoutSolverResult.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPCollectionCompositionalLayoutSolverResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPCollectionCompositionalLayoutSolverResult.m -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPCollectionViewOrthogonalScrollerEmbeddedScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPCollectionViewOrthogonalScrollerEmbeddedScrollView.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPCollectionViewOrthogonalScrollerEmbeddedScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPCollectionViewOrthogonalScrollerEmbeddedScrollView.m -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPCollectionViewOrthogonalScrollerSectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPCollectionViewOrthogonalScrollerSectionController.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPCollectionViewOrthogonalScrollerSectionController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPCollectionViewOrthogonalScrollerSectionController.m -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutAnchor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutAnchor.m -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutAnchor_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutAnchor_Private.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutBoundarySupplementaryItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutBoundarySupplementaryItem.m -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutContainer.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutContainer.m -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutDecorationItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutDecorationItem.m -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutDimension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutDimension.m -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutEdgeSpacing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutEdgeSpacing.m -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutEdgeSpacing_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutEdgeSpacing_Private.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutEnvironment.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutEnvironment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutEnvironment.m -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutGroup.m -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutGroupCustomItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutGroupCustomItem.m -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutGroup_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutGroup_Private.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutItem.m -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutItem_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutItem_Private.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutSection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutSection.m -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutSection_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutSection_Private.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutSize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutSize.m -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutSize_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutSize_Private.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutSpacing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutSpacing.m -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutSpacing_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutSpacing_Private.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutSupplementaryItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutSupplementaryItem.m -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutSupplementaryItem_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSCollectionLayoutSupplementaryItem_Private.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPNSDirectionalEdgeInsets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPNSDirectionalEdgeInsets.m -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPUICollectionViewCompositionalLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPUICollectionViewCompositionalLayout.m -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPUICollectionViewCompositionalLayoutConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPUICollectionViewCompositionalLayoutConfiguration.m -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/IBPUICollectionViewCompositionalLayoutConfiguration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/IBPUICollectionViewCompositionalLayoutConfiguration_Private.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPCollectionViewCompositionalLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPCollectionViewCompositionalLayout.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutAnchor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutAnchor.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutBoundarySupplementaryItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutBoundarySupplementaryItem.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutContainer_Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutContainer_Protocol.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutDecorationItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutDecorationItem.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutDimension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutDimension.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutEdgeSpacing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutEdgeSpacing.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutEnvironment_Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutEnvironment_Protocol.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutForwardCompatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutForwardCompatibility.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutGroup.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutGroupCustomItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutGroupCustomItem.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutItem.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutSection.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutSize.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutSpacing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutSpacing.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutSupplementaryItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutSupplementaryItem.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutVisibleItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPNSCollectionLayoutVisibleItem.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPNSDirectionalEdgeInsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPNSDirectionalEdgeInsets.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPNSDirectionalRectEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPNSDirectionalRectEdge.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPNSRectAlignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPNSRectAlignment.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPUICollectionLayoutSectionOrthogonalScrollingBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPUICollectionLayoutSectionOrthogonalScrollingBehavior.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPUICollectionViewCompositionalLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPUICollectionViewCompositionalLayout.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/IBPUICollectionViewCompositionalLayoutConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/IBPUICollectionViewCompositionalLayoutConfiguration.h -------------------------------------------------------------------------------- /Sources/IBPCollectionViewCompositionalLayout/include/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/IBPCollectionViewCompositionalLayout/include/module.modulemap -------------------------------------------------------------------------------- /Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Sources/Info.plist -------------------------------------------------------------------------------- /Tests/IBPCollectionViewCompositionalLayoutTests/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Tests/IBPCollectionViewCompositionalLayoutTests/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Tests/IBPCollectionViewCompositionalLayoutTests/Assets.xcassets/chevron.left.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Tests/IBPCollectionViewCompositionalLayoutTests/Assets.xcassets/chevron.left.imageset/Contents.json -------------------------------------------------------------------------------- /Tests/IBPCollectionViewCompositionalLayoutTests/Assets.xcassets/chevron.left.imageset/chevron.left.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Tests/IBPCollectionViewCompositionalLayoutTests/Assets.xcassets/chevron.left.imageset/chevron.left.pdf -------------------------------------------------------------------------------- /Tests/IBPCollectionViewCompositionalLayoutTests/Assets.xcassets/chevron.right.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Tests/IBPCollectionViewCompositionalLayoutTests/Assets.xcassets/chevron.right.imageset/Contents.json -------------------------------------------------------------------------------- /Tests/IBPCollectionViewCompositionalLayoutTests/Assets.xcassets/chevron.right.imageset/chevron.right.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Tests/IBPCollectionViewCompositionalLayoutTests/Assets.xcassets/chevron.right.imageset/chevron.right.pdf -------------------------------------------------------------------------------- /Tests/IBPCollectionViewCompositionalLayoutTests/DiffableDataSourceInteroperability.swift: -------------------------------------------------------------------------------- 1 | ../../Example/Example/DiffableDataSourceInteroperability.swift -------------------------------------------------------------------------------- /Tests/IBPCollectionViewCompositionalLayoutTests/IBPCollectionViewCompositionalLayoutInteroperability.swift: -------------------------------------------------------------------------------- 1 | ../../IBPCollectionViewCompositionalLayoutInteroperability.swift -------------------------------------------------------------------------------- /Tests/IBPCollectionViewCompositionalLayoutTests/ListViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Tests/IBPCollectionViewCompositionalLayoutTests/ListViewTests.swift -------------------------------------------------------------------------------- /Tests/IBPCollectionViewCompositionalLayoutTests/UIKitInteroperability.swift: -------------------------------------------------------------------------------- 1 | ../../Example/Example/UIKitInteroperability.swift -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout/HEAD/azure-pipelines.yml --------------------------------------------------------------------------------