├── .gitignore ├── ArrayDiff.podspec ├── ArrayDiff.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── ArrayDiff.xcscheme ├── ArrayDiff ├── ArrayDiff.h ├── ArrayDiff.swift ├── FoundationExtensions.swift ├── Info.plist ├── Section.swift └── UIKitIntegration.swift ├── ArrayDiffTests ├── ArrayDiffTests.swift └── Info.plist ├── Example ├── ArrayDiffExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── ArrayDiffExample.xcworkspace │ └── contents.xcworkspacedata ├── ArrayDiffExample │ ├── AppDelegate.swift │ ├── ArrayDiffExample-Bridging-Header.h │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── Utilities.swift │ └── ViewController.swift └── Podfile ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/.gitignore -------------------------------------------------------------------------------- /ArrayDiff.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/ArrayDiff.podspec -------------------------------------------------------------------------------- /ArrayDiff.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/ArrayDiff.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ArrayDiff.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/ArrayDiff.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ArrayDiff.xcodeproj/xcshareddata/xcschemes/ArrayDiff.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/ArrayDiff.xcodeproj/xcshareddata/xcschemes/ArrayDiff.xcscheme -------------------------------------------------------------------------------- /ArrayDiff/ArrayDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/ArrayDiff/ArrayDiff.h -------------------------------------------------------------------------------- /ArrayDiff/ArrayDiff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/ArrayDiff/ArrayDiff.swift -------------------------------------------------------------------------------- /ArrayDiff/FoundationExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/ArrayDiff/FoundationExtensions.swift -------------------------------------------------------------------------------- /ArrayDiff/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/ArrayDiff/Info.plist -------------------------------------------------------------------------------- /ArrayDiff/Section.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/ArrayDiff/Section.swift -------------------------------------------------------------------------------- /ArrayDiff/UIKitIntegration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/ArrayDiff/UIKitIntegration.swift -------------------------------------------------------------------------------- /ArrayDiffTests/ArrayDiffTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/ArrayDiffTests/ArrayDiffTests.swift -------------------------------------------------------------------------------- /ArrayDiffTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/ArrayDiffTests/Info.plist -------------------------------------------------------------------------------- /Example/ArrayDiffExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/Example/ArrayDiffExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ArrayDiffExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/Example/ArrayDiffExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ArrayDiffExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/Example/ArrayDiffExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ArrayDiffExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/Example/ArrayDiffExample/AppDelegate.swift -------------------------------------------------------------------------------- /Example/ArrayDiffExample/ArrayDiffExample-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/ArrayDiffExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/Example/ArrayDiffExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ArrayDiffExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/Example/ArrayDiffExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/ArrayDiffExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/Example/ArrayDiffExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/ArrayDiffExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/Example/ArrayDiffExample/Info.plist -------------------------------------------------------------------------------- /Example/ArrayDiffExample/Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/Example/ArrayDiffExample/Utilities.swift -------------------------------------------------------------------------------- /Example/ArrayDiffExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/Example/ArrayDiffExample/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '8.0' 2 | 3 | use_frameworks! 4 | 5 | pod 'ArrayDiff', :path => '../' 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adlai-Holler/ArrayDiff/HEAD/README.md --------------------------------------------------------------------------------