├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Examples └── HeckelDiffExample │ ├── AppDelegate.swift │ ├── HeckelDiffExample.xcodeproj │ └── project.pbxproj │ ├── HeckelDiffExample │ └── Info.plist │ ├── HeckelDiffExample_tvOS │ └── Info.plist │ └── ViewController.swift ├── HeckelDiff.podspec ├── HeckelDiff.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── HeckelDiff.xcscheme ├── HeckelDiff.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── Package.swift ├── README.md ├── Source ├── Diff.swift ├── HeckelDiff.h ├── Info.plist ├── ListUpdate.swift ├── UICollectionView+Diff.swift └── UITableView+Diff.swift └── Tests ├── DiffTests.swift ├── HeckelDiffTests.swift └── Info.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Examples/HeckelDiffExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/Examples/HeckelDiffExample/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/HeckelDiffExample/HeckelDiffExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/Examples/HeckelDiffExample/HeckelDiffExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/HeckelDiffExample/HeckelDiffExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/Examples/HeckelDiffExample/HeckelDiffExample/Info.plist -------------------------------------------------------------------------------- /Examples/HeckelDiffExample/HeckelDiffExample_tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/Examples/HeckelDiffExample/HeckelDiffExample_tvOS/Info.plist -------------------------------------------------------------------------------- /Examples/HeckelDiffExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/Examples/HeckelDiffExample/ViewController.swift -------------------------------------------------------------------------------- /HeckelDiff.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/HeckelDiff.podspec -------------------------------------------------------------------------------- /HeckelDiff.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/HeckelDiff.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HeckelDiff.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/HeckelDiff.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HeckelDiff.xcodeproj/xcshareddata/xcschemes/HeckelDiff.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/HeckelDiff.xcodeproj/xcshareddata/xcschemes/HeckelDiff.xcscheme -------------------------------------------------------------------------------- /HeckelDiff.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/HeckelDiff.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HeckelDiff.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/HeckelDiff.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/README.md -------------------------------------------------------------------------------- /Source/Diff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/Source/Diff.swift -------------------------------------------------------------------------------- /Source/HeckelDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/Source/HeckelDiff.h -------------------------------------------------------------------------------- /Source/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/Source/Info.plist -------------------------------------------------------------------------------- /Source/ListUpdate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/Source/ListUpdate.swift -------------------------------------------------------------------------------- /Source/UICollectionView+Diff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/Source/UICollectionView+Diff.swift -------------------------------------------------------------------------------- /Source/UITableView+Diff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/Source/UITableView+Diff.swift -------------------------------------------------------------------------------- /Tests/DiffTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/Tests/DiffTests.swift -------------------------------------------------------------------------------- /Tests/HeckelDiffTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/Tests/HeckelDiffTests.swift -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcudich/HeckelDiff/HEAD/Tests/Info.plist --------------------------------------------------------------------------------