├── .build ├── debug.yaml ├── manifest.db └── x86_64-apple-macosx │ ├── build.db │ └── debug │ ├── ModuleCache │ ├── 37NUFZOP9ZAD7 │ │ └── SwiftShims-2DA6NLEWJC11R.pcm │ ├── Swift-39YYAJQGEAJ2E.swiftmodule │ └── SwiftOnoneSupport-2RFMDLM7SUFB5.swiftmodule │ ├── SETabView.build │ ├── Helper.d │ ├── Helper.swiftdeps │ ├── SETabView.d │ ├── SETabView.swiftdeps │ ├── SEViewController.d │ ├── SEViewController.swiftdeps │ ├── master.swiftdeps │ ├── master.swiftdeps~moduleonly │ ├── module.modulemap │ └── output-file-map.json │ ├── SETabViewPackageTests.product │ └── Objects.LinkFileList │ ├── description.json │ └── index │ └── store │ └── v5 │ ├── records │ ├── 20 │ │ └── Helper.swift-4H91YLBIVH20 │ ├── 31 │ │ └── SETabView.swift-D361JZ1WW31 │ ├── 0B │ │ └── x86_64.swiftinterface_Playground-2BDEY5WTUT30B │ ├── 1I │ │ └── x86_64.swiftinterface_Math_Integers-1KOR3A56TZW1I │ ├── 3N │ │ └── x86_64.swiftinterface_Math_Integers-4FZ39UT9YN3N │ ├── 3S │ │ └── x86_64.swiftinterface_Assert-V65YNMTP6C3S │ ├── 5Q │ │ └── x86_64.swiftinterface_String-H3HH1CSS8L5Q │ ├── 5S │ │ └── x86_64.swiftinterface_Misc-2QOU950HNIW5S │ ├── B9 │ │ └── x86_64.swiftinterface_Hashing-1Y4B2U6G2NXB9 │ ├── BA │ │ └── x86_64.swiftinterface_Collection-1OOHYK7IC0VBA │ ├── BJ │ │ └── x86_64.swiftinterface_Collection_Type-erased-2GDE9N2H0B8BJ │ ├── DW │ │ └── x86_64.swiftinterface_Result-2AQN7BFZ1PVDW │ ├── DX │ │ └── x86_64.swiftinterface_Collection_HashedCollections-29A182UK5FQDX │ ├── G3 │ │ └── x86_64.swiftinterface_C-34WRX7VVQ15G3 │ ├── H0 │ │ └── x86_64.swiftinterface_Bool-40OL09C2T2H0 │ ├── I7 │ │ └── SEViewController.swift-3EJQHSB645VI7 │ ├── JF │ │ └── x86_64.swiftinterface-3CXT5LB78S3JF │ ├── KD │ │ └── x86_64.swiftinterface_Collection_Lazy_Views-3MDMH5FHKI4KD │ ├── L2 │ │ └── x86_64.swiftinterface_Optional-4I9DUJ3SK1L2 │ ├── P0 │ │ └── x86_64.swiftinterface_Reflection-2VIZ2H1FZUHP0 │ ├── P1 │ │ └── x86_64.swiftinterface_Pointer-QCJI3XVI5BP1 │ ├── PQ │ │ └── x86_64.swiftinterface_Math_Floating-1X1Z0YAIY8APQ │ ├── PZ │ │ └── x86_64.swiftinterface_KeyPaths-H0WDHRNCUMPZ │ ├── S1 │ │ └── x86_64.swiftinterface_Math-1AQNC3D9CLDS1 │ ├── SK │ │ └── x86_64.swiftinterface_Collection_Array-1GZF7D7LHZVSK │ ├── VC │ │ └── x86_64.swiftinterface_Protocols-MCM8WJEDZ1VC │ └── Z6 │ │ └── x86_64.swiftinterface_Math_Vector-PNCOG8ZHQNZ6 │ └── units │ ├── Helper.swift.o-1NF4RD9PFTAOH │ ├── SETabView.swift.o-28S4YQEOK5OZW │ ├── SEViewController.swift.o-3D0K590ERCMIZ │ └── x86_64.swiftinterface-1DZ86EJZP8AVR ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── SETabView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── Target Support Files │ │ ├── Pods-SETabView_Example │ │ ├── Pods-SETabView_Example-Info.plist │ │ ├── Pods-SETabView_Example-acknowledgements.markdown │ │ ├── Pods-SETabView_Example-acknowledgements.plist │ │ ├── Pods-SETabView_Example-dummy.m │ │ ├── Pods-SETabView_Example-frameworks.sh │ │ ├── Pods-SETabView_Example-umbrella.h │ │ ├── Pods-SETabView_Example.debug.xcconfig │ │ ├── Pods-SETabView_Example.modulemap │ │ └── Pods-SETabView_Example.release.xcconfig │ │ ├── Pods-SETabView_Tests │ │ ├── Pods-SETabView_Tests-Info.plist │ │ ├── Pods-SETabView_Tests-acknowledgements.markdown │ │ ├── Pods-SETabView_Tests-acknowledgements.plist │ │ ├── Pods-SETabView_Tests-dummy.m │ │ ├── Pods-SETabView_Tests-umbrella.h │ │ ├── Pods-SETabView_Tests.debug.xcconfig │ │ ├── Pods-SETabView_Tests.modulemap │ │ └── Pods-SETabView_Tests.release.xcconfig │ │ └── SETabView │ │ ├── SETabView-Info.plist │ │ ├── SETabView-dummy.m │ │ ├── SETabView-prefix.pch │ │ ├── SETabView-umbrella.h │ │ ├── SETabView.debug.xcconfig │ │ ├── SETabView.modulemap │ │ └── SETabView.release.xcconfig ├── SETabView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── SETabView-Example.xcscheme ├── SETabView.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── SETabView │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── FifthViewController.swift │ ├── FirstViewController.swift │ ├── FourthViewController.swift │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── fifth.imageset │ │ │ ├── 031-death.png │ │ │ └── Contents.json │ │ ├── first.imageset │ │ │ ├── 029-dracula.png │ │ │ └── Contents.json │ │ ├── fourth.imageset │ │ │ ├── 021-frankenstein.png │ │ │ └── Contents.json │ │ ├── second.imageset │ │ │ ├── 030-devil.png │ │ │ └── Contents.json │ │ └── third.imageset │ │ │ ├── 011-mummy.png │ │ │ └── Contents.json │ ├── Info.plist │ ├── SecondViewController.swift │ ├── ThirdViewController.swift │ └── ViewController.swift └── Tests │ ├── Info.plist │ └── Tests.swift ├── Gifs ├── HoleBall1.gif ├── HoleBall2.gif └── HoleBall3.gif ├── LICENSE ├── Package.swift ├── README.md ├── README_olderVersions.md ├── SETabView.podspec ├── SETabView ├── Assets │ └── .gitkeep └── Classes │ └── .gitkeep ├── Source ├── Deprecated │ └── Deprecated.swift ├── OrderedCollections │ ├── CMakeLists.txt │ ├── HashTable │ │ ├── _HashTable+Bucket.swift │ │ ├── _HashTable+BucketIterator.swift │ │ ├── _HashTable+Constants.swift │ │ ├── _HashTable+CustomStringConvertible.swift │ │ ├── _HashTable+Testing.swift │ │ ├── _HashTable+UnsafeHandle.swift │ │ ├── _HashTable.swift │ │ └── _Hashtable+Header.swift │ ├── OrderedDictionary │ │ ├── OrderedDictionary+Codable.swift │ │ ├── OrderedDictionary+CustomDebugStringConvertible.swift │ │ ├── OrderedDictionary+CustomReflectable.swift │ │ ├── OrderedDictionary+CustomStringConvertible.swift │ │ ├── OrderedDictionary+Deprecations.swift │ │ ├── OrderedDictionary+Elements+SubSequence.swift │ │ ├── OrderedDictionary+Elements.swift │ │ ├── OrderedDictionary+Equatable.swift │ │ ├── OrderedDictionary+ExpressibleByDictionaryLiteral.swift │ │ ├── OrderedDictionary+Hashable.swift │ │ ├── OrderedDictionary+Initializers.swift │ │ ├── OrderedDictionary+Invariants.swift │ │ ├── OrderedDictionary+Partial MutableCollection.swift │ │ ├── OrderedDictionary+Partial RangeReplaceableCollection.swift │ │ ├── OrderedDictionary+Sequence.swift │ │ ├── OrderedDictionary+Values.swift │ │ └── OrderedDictionary.swift │ ├── OrderedSet │ │ ├── OrderedSet+Codable.swift │ │ ├── OrderedSet+CustomDebugStringConvertible.swift │ │ ├── OrderedSet+CustomReflectable.swift │ │ ├── OrderedSet+CustomStringConvertible.swift │ │ ├── OrderedSet+Diffing.swift │ │ ├── OrderedSet+Equatable.swift │ │ ├── OrderedSet+ExpressibleByArrayLiteral.swift │ │ ├── OrderedSet+Hashable.swift │ │ ├── OrderedSet+Initializers.swift │ │ ├── OrderedSet+Insertions.swift │ │ ├── OrderedSet+Invariants.swift │ │ ├── OrderedSet+Partial MutableCollection.swift │ │ ├── OrderedSet+Partial RangeReplaceableCollection.swift │ │ ├── OrderedSet+Partial SetAlgebra+Basics.swift │ │ ├── OrderedSet+Partial SetAlgebra+Operations.swift │ │ ├── OrderedSet+Partial SetAlgebra+Predicates.swift │ │ ├── OrderedSet+RandomAccessCollection.swift │ │ ├── OrderedSet+ReserveCapacity.swift │ │ ├── OrderedSet+SubSequence.swift │ │ ├── OrderedSet+Testing.swift │ │ ├── OrderedSet+UnorderedView.swift │ │ ├── OrderedSet+UnstableInternals.swift │ │ └── OrderedSet.swift │ └── Utilities │ │ ├── RandomAccessCollection+Offsets.swift │ │ └── _UnsafeBitset.swift ├── Reusable │ ├── SELayer.swift │ └── SEShapeLayer.swift ├── TabViews │ ├── AnimatedTabView.swift │ ├── AnimatedTabViewProtocol.swift │ ├── HoleScaleTabView.swift │ ├── InvertedPlateauTabView.swift │ └── MorphPlateauTabView.swift ├── Utilities │ ├── AnimationType.swift │ ├── SELayerAnimationProvider.swift │ ├── SEPathProvider.swift │ ├── SETabSettings.swift │ └── SETimingFunctions.swift └── ViewControllers │ ├── AnimatedTabViewDelegate.swift │ ├── SETabItemProvider.swift │ └── SETabViewController.swift ├── Tests ├── LinuxMain.swift └── SETabViewTests │ ├── SETabViewTests.swift │ └── XCTestManifests.swift └── _Pods.xcodeproj /.build/debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/debug.yaml -------------------------------------------------------------------------------- /.build/manifest.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/manifest.db -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/build.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/build.db -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/ModuleCache/37NUFZOP9ZAD7/SwiftShims-2DA6NLEWJC11R.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/ModuleCache/37NUFZOP9ZAD7/SwiftShims-2DA6NLEWJC11R.pcm -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/ModuleCache/Swift-39YYAJQGEAJ2E.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/ModuleCache/Swift-39YYAJQGEAJ2E.swiftmodule -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/ModuleCache/SwiftOnoneSupport-2RFMDLM7SUFB5.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/ModuleCache/SwiftOnoneSupport-2RFMDLM7SUFB5.swiftmodule -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/SETabView.build/Helper.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/SETabView.build/Helper.d -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/SETabView.build/Helper.swiftdeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/SETabView.build/Helper.swiftdeps -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/SETabView.build/SETabView.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/SETabView.build/SETabView.d -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/SETabView.build/SETabView.swiftdeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/SETabView.build/SETabView.swiftdeps -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/SETabView.build/SEViewController.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/SETabView.build/SEViewController.d -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/SETabView.build/SEViewController.swiftdeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/SETabView.build/SEViewController.swiftdeps -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/SETabView.build/master.swiftdeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/SETabView.build/master.swiftdeps -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/SETabView.build/master.swiftdeps~moduleonly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/SETabView.build/master.swiftdeps~moduleonly -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/SETabView.build/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/SETabView.build/module.modulemap -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/SETabView.build/output-file-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/SETabView.build/output-file-map.json -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/SETabViewPackageTests.product/Objects.LinkFileList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/SETabViewPackageTests.product/Objects.LinkFileList -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/description.json -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/0B/x86_64.swiftinterface_Playground-2BDEY5WTUT30B: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/0B/x86_64.swiftinterface_Playground-2BDEY5WTUT30B -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/1I/x86_64.swiftinterface_Math_Integers-1KOR3A56TZW1I: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/1I/x86_64.swiftinterface_Math_Integers-1KOR3A56TZW1I -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/20/Helper.swift-4H91YLBIVH20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/20/Helper.swift-4H91YLBIVH20 -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/31/SETabView.swift-D361JZ1WW31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/31/SETabView.swift-D361JZ1WW31 -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/3N/x86_64.swiftinterface_Math_Integers-4FZ39UT9YN3N: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/3N/x86_64.swiftinterface_Math_Integers-4FZ39UT9YN3N -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/3S/x86_64.swiftinterface_Assert-V65YNMTP6C3S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/3S/x86_64.swiftinterface_Assert-V65YNMTP6C3S -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/5Q/x86_64.swiftinterface_String-H3HH1CSS8L5Q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/5Q/x86_64.swiftinterface_String-H3HH1CSS8L5Q -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/5S/x86_64.swiftinterface_Misc-2QOU950HNIW5S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/5S/x86_64.swiftinterface_Misc-2QOU950HNIW5S -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/B9/x86_64.swiftinterface_Hashing-1Y4B2U6G2NXB9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/B9/x86_64.swiftinterface_Hashing-1Y4B2U6G2NXB9 -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/BA/x86_64.swiftinterface_Collection-1OOHYK7IC0VBA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/BA/x86_64.swiftinterface_Collection-1OOHYK7IC0VBA -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/BJ/x86_64.swiftinterface_Collection_Type-erased-2GDE9N2H0B8BJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/BJ/x86_64.swiftinterface_Collection_Type-erased-2GDE9N2H0B8BJ -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/DW/x86_64.swiftinterface_Result-2AQN7BFZ1PVDW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/DW/x86_64.swiftinterface_Result-2AQN7BFZ1PVDW -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/DX/x86_64.swiftinterface_Collection_HashedCollections-29A182UK5FQDX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/DX/x86_64.swiftinterface_Collection_HashedCollections-29A182UK5FQDX -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/G3/x86_64.swiftinterface_C-34WRX7VVQ15G3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/G3/x86_64.swiftinterface_C-34WRX7VVQ15G3 -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/H0/x86_64.swiftinterface_Bool-40OL09C2T2H0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/H0/x86_64.swiftinterface_Bool-40OL09C2T2H0 -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/I7/SEViewController.swift-3EJQHSB645VI7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/I7/SEViewController.swift-3EJQHSB645VI7 -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/JF/x86_64.swiftinterface-3CXT5LB78S3JF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/JF/x86_64.swiftinterface-3CXT5LB78S3JF -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/KD/x86_64.swiftinterface_Collection_Lazy_Views-3MDMH5FHKI4KD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/KD/x86_64.swiftinterface_Collection_Lazy_Views-3MDMH5FHKI4KD -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/L2/x86_64.swiftinterface_Optional-4I9DUJ3SK1L2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/L2/x86_64.swiftinterface_Optional-4I9DUJ3SK1L2 -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/P0/x86_64.swiftinterface_Reflection-2VIZ2H1FZUHP0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/P0/x86_64.swiftinterface_Reflection-2VIZ2H1FZUHP0 -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/P1/x86_64.swiftinterface_Pointer-QCJI3XVI5BP1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/P1/x86_64.swiftinterface_Pointer-QCJI3XVI5BP1 -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/PQ/x86_64.swiftinterface_Math_Floating-1X1Z0YAIY8APQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/PQ/x86_64.swiftinterface_Math_Floating-1X1Z0YAIY8APQ -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/PZ/x86_64.swiftinterface_KeyPaths-H0WDHRNCUMPZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/PZ/x86_64.swiftinterface_KeyPaths-H0WDHRNCUMPZ -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/S1/x86_64.swiftinterface_Math-1AQNC3D9CLDS1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/S1/x86_64.swiftinterface_Math-1AQNC3D9CLDS1 -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/SK/x86_64.swiftinterface_Collection_Array-1GZF7D7LHZVSK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/SK/x86_64.swiftinterface_Collection_Array-1GZF7D7LHZVSK -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/VC/x86_64.swiftinterface_Protocols-MCM8WJEDZ1VC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/VC/x86_64.swiftinterface_Protocols-MCM8WJEDZ1VC -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/records/Z6/x86_64.swiftinterface_Math_Vector-PNCOG8ZHQNZ6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/records/Z6/x86_64.swiftinterface_Math_Vector-PNCOG8ZHQNZ6 -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/units/Helper.swift.o-1NF4RD9PFTAOH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/units/Helper.swift.o-1NF4RD9PFTAOH -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/units/SETabView.swift.o-28S4YQEOK5OZW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/units/SETabView.swift.o-28S4YQEOK5OZW -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/units/SEViewController.swift.o-3D0K590ERCMIZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/units/SEViewController.swift.o-3D0K590ERCMIZ -------------------------------------------------------------------------------- /.build/x86_64-apple-macosx/debug/index/store/v5/units/x86_64.swiftinterface-1DZ86EJZP8AVR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.build/x86_64-apple-macosx/debug/index/store/v5/units/x86_64.swiftinterface-1DZ86EJZP8AVR -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/SETabView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Local Podspecs/SETabView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SETabView_Example/Pods-SETabView_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/Pods-SETabView_Example/Pods-SETabView_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SETabView_Example/Pods-SETabView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/Pods-SETabView_Example/Pods-SETabView_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SETabView_Example/Pods-SETabView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/Pods-SETabView_Example/Pods-SETabView_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SETabView_Example/Pods-SETabView_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/Pods-SETabView_Example/Pods-SETabView_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SETabView_Example/Pods-SETabView_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/Pods-SETabView_Example/Pods-SETabView_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SETabView_Example/Pods-SETabView_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/Pods-SETabView_Example/Pods-SETabView_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SETabView_Example/Pods-SETabView_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/Pods-SETabView_Example/Pods-SETabView_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SETabView_Example/Pods-SETabView_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/Pods-SETabView_Example/Pods-SETabView_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SETabView_Example/Pods-SETabView_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/Pods-SETabView_Example/Pods-SETabView_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SETabView_Tests/Pods-SETabView_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/Pods-SETabView_Tests/Pods-SETabView_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SETabView_Tests/Pods-SETabView_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/Pods-SETabView_Tests/Pods-SETabView_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SETabView_Tests/Pods-SETabView_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/Pods-SETabView_Tests/Pods-SETabView_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SETabView_Tests/Pods-SETabView_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/Pods-SETabView_Tests/Pods-SETabView_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SETabView_Tests/Pods-SETabView_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/Pods-SETabView_Tests/Pods-SETabView_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SETabView_Tests/Pods-SETabView_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/Pods-SETabView_Tests/Pods-SETabView_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SETabView_Tests/Pods-SETabView_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/Pods-SETabView_Tests/Pods-SETabView_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SETabView_Tests/Pods-SETabView_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/Pods-SETabView_Tests/Pods-SETabView_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SETabView/SETabView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/SETabView/SETabView-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SETabView/SETabView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/SETabView/SETabView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SETabView/SETabView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/SETabView/SETabView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SETabView/SETabView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/SETabView/SETabView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SETabView/SETabView.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/SETabView/SETabView.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SETabView/SETabView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/SETabView/SETabView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SETabView/SETabView.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Pods/Target Support Files/SETabView/SETabView.release.xcconfig -------------------------------------------------------------------------------- /Example/SETabView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/SETabView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SETabView.xcodeproj/xcshareddata/xcschemes/SETabView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView.xcodeproj/xcshareddata/xcschemes/SETabView-Example.xcscheme -------------------------------------------------------------------------------- /Example/SETabView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SETabView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/SETabView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView/AppDelegate.swift -------------------------------------------------------------------------------- /Example/SETabView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/SETabView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/SETabView/FifthViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView/FifthViewController.swift -------------------------------------------------------------------------------- /Example/SETabView/FirstViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView/FirstViewController.swift -------------------------------------------------------------------------------- /Example/SETabView/FourthViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView/FourthViewController.swift -------------------------------------------------------------------------------- /Example/SETabView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/SETabView/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/SETabView/Images.xcassets/fifth.imageset/031-death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView/Images.xcassets/fifth.imageset/031-death.png -------------------------------------------------------------------------------- /Example/SETabView/Images.xcassets/fifth.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView/Images.xcassets/fifth.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SETabView/Images.xcassets/first.imageset/029-dracula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView/Images.xcassets/first.imageset/029-dracula.png -------------------------------------------------------------------------------- /Example/SETabView/Images.xcassets/first.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView/Images.xcassets/first.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SETabView/Images.xcassets/fourth.imageset/021-frankenstein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView/Images.xcassets/fourth.imageset/021-frankenstein.png -------------------------------------------------------------------------------- /Example/SETabView/Images.xcassets/fourth.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView/Images.xcassets/fourth.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SETabView/Images.xcassets/second.imageset/030-devil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView/Images.xcassets/second.imageset/030-devil.png -------------------------------------------------------------------------------- /Example/SETabView/Images.xcassets/second.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView/Images.xcassets/second.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SETabView/Images.xcassets/third.imageset/011-mummy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView/Images.xcassets/third.imageset/011-mummy.png -------------------------------------------------------------------------------- /Example/SETabView/Images.xcassets/third.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView/Images.xcassets/third.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SETabView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView/Info.plist -------------------------------------------------------------------------------- /Example/SETabView/SecondViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView/SecondViewController.swift -------------------------------------------------------------------------------- /Example/SETabView/ThirdViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView/ThirdViewController.swift -------------------------------------------------------------------------------- /Example/SETabView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/SETabView/ViewController.swift -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /Gifs/HoleBall1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Gifs/HoleBall1.gif -------------------------------------------------------------------------------- /Gifs/HoleBall2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Gifs/HoleBall2.gif -------------------------------------------------------------------------------- /Gifs/HoleBall3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Gifs/HoleBall3.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/README.md -------------------------------------------------------------------------------- /README_olderVersions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/README_olderVersions.md -------------------------------------------------------------------------------- /SETabView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/SETabView.podspec -------------------------------------------------------------------------------- /SETabView/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SETabView/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Deprecated/Deprecated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/Deprecated/Deprecated.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/CMakeLists.txt -------------------------------------------------------------------------------- /Source/OrderedCollections/HashTable/_HashTable+Bucket.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/HashTable/_HashTable+Bucket.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/HashTable/_HashTable+BucketIterator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/HashTable/_HashTable+BucketIterator.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/HashTable/_HashTable+Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/HashTable/_HashTable+Constants.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/HashTable/_HashTable+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/HashTable/_HashTable+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/HashTable/_HashTable+Testing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/HashTable/_HashTable+Testing.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/HashTable/_HashTable+UnsafeHandle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/HashTable/_HashTable+UnsafeHandle.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/HashTable/_HashTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/HashTable/_HashTable.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/HashTable/_Hashtable+Header.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/HashTable/_Hashtable+Header.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Codable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Codable.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedDictionary/OrderedDictionary+CustomDebugStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedDictionary/OrderedDictionary+CustomDebugStringConvertible.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedDictionary/OrderedDictionary+CustomReflectable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedDictionary/OrderedDictionary+CustomReflectable.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedDictionary/OrderedDictionary+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedDictionary/OrderedDictionary+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Deprecations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Deprecations.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Elements+SubSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Elements+SubSequence.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Elements.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Elements.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Equatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Equatable.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedDictionary/OrderedDictionary+ExpressibleByDictionaryLiteral.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedDictionary/OrderedDictionary+ExpressibleByDictionaryLiteral.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Hashable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Hashable.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Initializers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Initializers.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Invariants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Invariants.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Partial MutableCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Partial MutableCollection.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Partial RangeReplaceableCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Partial RangeReplaceableCollection.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Sequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Sequence.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Values.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedDictionary/OrderedDictionary+Values.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedDictionary/OrderedDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedDictionary/OrderedDictionary.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet+Codable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet+Codable.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet+CustomDebugStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet+CustomDebugStringConvertible.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet+CustomReflectable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet+CustomReflectable.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet+Diffing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet+Diffing.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet+Equatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet+Equatable.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet+ExpressibleByArrayLiteral.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet+ExpressibleByArrayLiteral.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet+Hashable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet+Hashable.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet+Initializers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet+Initializers.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet+Insertions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet+Insertions.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet+Invariants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet+Invariants.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet+Partial MutableCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet+Partial MutableCollection.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet+Partial RangeReplaceableCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet+Partial RangeReplaceableCollection.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet+Partial SetAlgebra+Basics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet+Partial SetAlgebra+Basics.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet+Partial SetAlgebra+Operations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet+Partial SetAlgebra+Operations.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet+Partial SetAlgebra+Predicates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet+Partial SetAlgebra+Predicates.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet+RandomAccessCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet+RandomAccessCollection.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet+ReserveCapacity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet+ReserveCapacity.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet+SubSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet+SubSequence.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet+Testing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet+Testing.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet+UnorderedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet+UnorderedView.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet+UnstableInternals.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet+UnstableInternals.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/OrderedSet/OrderedSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/OrderedSet/OrderedSet.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/Utilities/RandomAccessCollection+Offsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/Utilities/RandomAccessCollection+Offsets.swift -------------------------------------------------------------------------------- /Source/OrderedCollections/Utilities/_UnsafeBitset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/OrderedCollections/Utilities/_UnsafeBitset.swift -------------------------------------------------------------------------------- /Source/Reusable/SELayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/Reusable/SELayer.swift -------------------------------------------------------------------------------- /Source/Reusable/SEShapeLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/Reusable/SEShapeLayer.swift -------------------------------------------------------------------------------- /Source/TabViews/AnimatedTabView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/TabViews/AnimatedTabView.swift -------------------------------------------------------------------------------- /Source/TabViews/AnimatedTabViewProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/TabViews/AnimatedTabViewProtocol.swift -------------------------------------------------------------------------------- /Source/TabViews/HoleScaleTabView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/TabViews/HoleScaleTabView.swift -------------------------------------------------------------------------------- /Source/TabViews/InvertedPlateauTabView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/TabViews/InvertedPlateauTabView.swift -------------------------------------------------------------------------------- /Source/TabViews/MorphPlateauTabView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/TabViews/MorphPlateauTabView.swift -------------------------------------------------------------------------------- /Source/Utilities/AnimationType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/Utilities/AnimationType.swift -------------------------------------------------------------------------------- /Source/Utilities/SELayerAnimationProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/Utilities/SELayerAnimationProvider.swift -------------------------------------------------------------------------------- /Source/Utilities/SEPathProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/Utilities/SEPathProvider.swift -------------------------------------------------------------------------------- /Source/Utilities/SETabSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/Utilities/SETabSettings.swift -------------------------------------------------------------------------------- /Source/Utilities/SETimingFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/Utilities/SETimingFunctions.swift -------------------------------------------------------------------------------- /Source/ViewControllers/AnimatedTabViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/ViewControllers/AnimatedTabViewDelegate.swift -------------------------------------------------------------------------------- /Source/ViewControllers/SETabItemProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/ViewControllers/SETabItemProvider.swift -------------------------------------------------------------------------------- /Source/ViewControllers/SETabViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Source/ViewControllers/SETabViewController.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/SETabViewTests/SETabViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Tests/SETabViewTests/SETabViewTests.swift -------------------------------------------------------------------------------- /Tests/SETabViewTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshwavin/SETabView/HEAD/Tests/SETabViewTests/XCTestManifests.swift -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------