├── Incremental.xcodeproj └── project.pbxproj ├── Incremental.xcworkspace └── contents.xcworkspacedata ├── Incremental ├── BinaryTree.swift ├── Incremental.h ├── Incremental.swift ├── IncrementalDataStructures.swift ├── IncrementalStdLib.swift ├── Info.plist └── SortedArray.swift ├── IncrementalCLI ├── Clock.swift └── main.swift ├── IncrementalExamples ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── StackViewController.swift ├── TableVC.swift └── ViewController.swift ├── IncrementalFilesystem ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ └── MainMenu.xib ├── IncrementalFilesystem.entitlements └── Info.plist ├── IncrementalTests ├── IncrementalArrayTests.swift ├── IncrementalTests.swift └── Info.plist ├── IncrementalTrees ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift └── Incremental_iOS ├── Incremental_iOS.h └── Info.plist /Incremental.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/Incremental.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Incremental.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/Incremental.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Incremental/BinaryTree.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/Incremental/BinaryTree.swift -------------------------------------------------------------------------------- /Incremental/Incremental.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/Incremental/Incremental.h -------------------------------------------------------------------------------- /Incremental/Incremental.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/Incremental/Incremental.swift -------------------------------------------------------------------------------- /Incremental/IncrementalDataStructures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/Incremental/IncrementalDataStructures.swift -------------------------------------------------------------------------------- /Incremental/IncrementalStdLib.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/Incremental/IncrementalStdLib.swift -------------------------------------------------------------------------------- /Incremental/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/Incremental/Info.plist -------------------------------------------------------------------------------- /Incremental/SortedArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/Incremental/SortedArray.swift -------------------------------------------------------------------------------- /IncrementalCLI/Clock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalCLI/Clock.swift -------------------------------------------------------------------------------- /IncrementalCLI/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalCLI/main.swift -------------------------------------------------------------------------------- /IncrementalExamples/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalExamples/AppDelegate.swift -------------------------------------------------------------------------------- /IncrementalExamples/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalExamples/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /IncrementalExamples/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalExamples/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /IncrementalExamples/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalExamples/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /IncrementalExamples/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalExamples/Info.plist -------------------------------------------------------------------------------- /IncrementalExamples/StackViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalExamples/StackViewController.swift -------------------------------------------------------------------------------- /IncrementalExamples/TableVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalExamples/TableVC.swift -------------------------------------------------------------------------------- /IncrementalExamples/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalExamples/ViewController.swift -------------------------------------------------------------------------------- /IncrementalFilesystem/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalFilesystem/AppDelegate.swift -------------------------------------------------------------------------------- /IncrementalFilesystem/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalFilesystem/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /IncrementalFilesystem/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalFilesystem/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /IncrementalFilesystem/IncrementalFilesystem.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalFilesystem/IncrementalFilesystem.entitlements -------------------------------------------------------------------------------- /IncrementalFilesystem/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalFilesystem/Info.plist -------------------------------------------------------------------------------- /IncrementalTests/IncrementalArrayTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalTests/IncrementalArrayTests.swift -------------------------------------------------------------------------------- /IncrementalTests/IncrementalTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalTests/IncrementalTests.swift -------------------------------------------------------------------------------- /IncrementalTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalTests/Info.plist -------------------------------------------------------------------------------- /IncrementalTrees/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalTrees/AppDelegate.swift -------------------------------------------------------------------------------- /IncrementalTrees/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalTrees/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /IncrementalTrees/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalTrees/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /IncrementalTrees/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalTrees/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /IncrementalTrees/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalTrees/Info.plist -------------------------------------------------------------------------------- /IncrementalTrees/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/IncrementalTrees/ViewController.swift -------------------------------------------------------------------------------- /Incremental_iOS/Incremental_iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/Incremental_iOS/Incremental_iOS.h -------------------------------------------------------------------------------- /Incremental_iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriseidhof/incremental-swift/HEAD/Incremental_iOS/Info.plist --------------------------------------------------------------------------------