├── .gitignore ├── .swift-version ├── .swiftlint.yml ├── .travis.yml ├── Arithmosophi.podspec ├── Arithmosophi.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── Arithmosophi.xccheckout │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── eric.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ ├── Arithmosophi.xcscheme │ │ ├── ArithmosophiOSX.xcscheme │ │ ├── ArithmosophiTVOS.xcscheme │ │ └── ArithmosophiWatchOS.xcscheme └── xcuserdata │ ├── eric.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ └── phimage.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── LICENSE ├── Package.swift ├── Playgrounds └── Arithmosophi.playground │ ├── Contents.swift │ ├── contents.xcplayground │ └── timeline.xctimeline ├── README.md ├── Samples ├── Boolean.swift ├── Box.swift ├── Geometry+Animation.swift ├── Geometry.swift ├── Info.plist ├── Optional.swift └── Parity.swift ├── Sources ├── Arithmos.swift ├── Arithmosophi.swift ├── Complex.swift ├── LogicalOperationsType.swift ├── MesosOros.swift ├── Sigma.swift └── Statheros.swift ├── Tests └── ArithmosophiOSXTests.swift ├── Xcode ├── OSX │ ├── ArithmosophiOSX.h │ └── Info.plist ├── TVOS │ ├── ArithmosophiTVOS.h │ └── Info.plist ├── WatchOS │ ├── ArithmosophiWatchOS.h │ └── Info.plist └── iOS │ ├── Arithmosophi.h │ └── Info.plist └── logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.3 2 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/.travis.yml -------------------------------------------------------------------------------- /Arithmosophi.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Arithmosophi.podspec -------------------------------------------------------------------------------- /Arithmosophi.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Arithmosophi.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Arithmosophi.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Arithmosophi.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Arithmosophi.xcodeproj/project.xcworkspace/xcshareddata/Arithmosophi.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Arithmosophi.xcodeproj/project.xcworkspace/xcshareddata/Arithmosophi.xccheckout -------------------------------------------------------------------------------- /Arithmosophi.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Arithmosophi.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Arithmosophi.xcodeproj/project.xcworkspace/xcuserdata/eric.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Arithmosophi.xcodeproj/project.xcworkspace/xcuserdata/eric.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Arithmosophi.xcodeproj/xcshareddata/xcschemes/Arithmosophi.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Arithmosophi.xcodeproj/xcshareddata/xcschemes/Arithmosophi.xcscheme -------------------------------------------------------------------------------- /Arithmosophi.xcodeproj/xcshareddata/xcschemes/ArithmosophiOSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Arithmosophi.xcodeproj/xcshareddata/xcschemes/ArithmosophiOSX.xcscheme -------------------------------------------------------------------------------- /Arithmosophi.xcodeproj/xcshareddata/xcschemes/ArithmosophiTVOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Arithmosophi.xcodeproj/xcshareddata/xcschemes/ArithmosophiTVOS.xcscheme -------------------------------------------------------------------------------- /Arithmosophi.xcodeproj/xcshareddata/xcschemes/ArithmosophiWatchOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Arithmosophi.xcodeproj/xcshareddata/xcschemes/ArithmosophiWatchOS.xcscheme -------------------------------------------------------------------------------- /Arithmosophi.xcodeproj/xcuserdata/eric.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Arithmosophi.xcodeproj/xcuserdata/eric.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Arithmosophi.xcodeproj/xcuserdata/phimage.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Arithmosophi.xcodeproj/xcuserdata/phimage.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Package.swift -------------------------------------------------------------------------------- /Playgrounds/Arithmosophi.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Playgrounds/Arithmosophi.playground/Contents.swift -------------------------------------------------------------------------------- /Playgrounds/Arithmosophi.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Playgrounds/Arithmosophi.playground/contents.xcplayground -------------------------------------------------------------------------------- /Playgrounds/Arithmosophi.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Playgrounds/Arithmosophi.playground/timeline.xctimeline -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/README.md -------------------------------------------------------------------------------- /Samples/Boolean.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Samples/Boolean.swift -------------------------------------------------------------------------------- /Samples/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Samples/Box.swift -------------------------------------------------------------------------------- /Samples/Geometry+Animation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Samples/Geometry+Animation.swift -------------------------------------------------------------------------------- /Samples/Geometry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Samples/Geometry.swift -------------------------------------------------------------------------------- /Samples/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Samples/Info.plist -------------------------------------------------------------------------------- /Samples/Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Samples/Optional.swift -------------------------------------------------------------------------------- /Samples/Parity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Samples/Parity.swift -------------------------------------------------------------------------------- /Sources/Arithmos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Sources/Arithmos.swift -------------------------------------------------------------------------------- /Sources/Arithmosophi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Sources/Arithmosophi.swift -------------------------------------------------------------------------------- /Sources/Complex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Sources/Complex.swift -------------------------------------------------------------------------------- /Sources/LogicalOperationsType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Sources/LogicalOperationsType.swift -------------------------------------------------------------------------------- /Sources/MesosOros.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Sources/MesosOros.swift -------------------------------------------------------------------------------- /Sources/Sigma.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Sources/Sigma.swift -------------------------------------------------------------------------------- /Sources/Statheros.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Sources/Statheros.swift -------------------------------------------------------------------------------- /Tests/ArithmosophiOSXTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Tests/ArithmosophiOSXTests.swift -------------------------------------------------------------------------------- /Xcode/OSX/ArithmosophiOSX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Xcode/OSX/ArithmosophiOSX.h -------------------------------------------------------------------------------- /Xcode/OSX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Xcode/OSX/Info.plist -------------------------------------------------------------------------------- /Xcode/TVOS/ArithmosophiTVOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Xcode/TVOS/ArithmosophiTVOS.h -------------------------------------------------------------------------------- /Xcode/TVOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Xcode/TVOS/Info.plist -------------------------------------------------------------------------------- /Xcode/WatchOS/ArithmosophiWatchOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Xcode/WatchOS/ArithmosophiWatchOS.h -------------------------------------------------------------------------------- /Xcode/WatchOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Xcode/WatchOS/Info.plist -------------------------------------------------------------------------------- /Xcode/iOS/Arithmosophi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Xcode/iOS/Arithmosophi.h -------------------------------------------------------------------------------- /Xcode/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/Xcode/iOS/Info.plist -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phimage/Arithmosophi/HEAD/logo.png --------------------------------------------------------------------------------