├── .gitignore ├── Burritos.podspec ├── CONTRIBUTING.md ├── LICENSE ├── Package.swift ├── README.md ├── Sources ├── AtomicWrite │ └── AtomicWrite.swift ├── Clamping │ └── Clamping.swift ├── Copying │ └── Copying.swift ├── DefaultValue │ └── DefaultValue.swift ├── DynamicUIColor │ └── DynamicUIColor.swift ├── EnvironmentVariable │ └── EnvironmentVariable.swift ├── Expirable │ └── Expirable.swift ├── LateInit │ └── LateInit.swift ├── Lazy │ └── Lazy.swift ├── LazyConstant │ └── LazyConstant.swift ├── Trimmed │ └── Trimmed.swift ├── UndoRedo │ └── UndoRedo.swift └── UserDefault │ └── UserDefault.swift └── Tests ├── AtomicWriteTests └── AtomicWriteTests.swift ├── ClampingTests └── ClampingTests.swift ├── CopyingTests └── CopyingTests.swift ├── DefaultValueTests └── DefaultValueTests.swift ├── DynamicUIColorTests └── DynamicUIColorTests.swift ├── EnvironmentVariableTests └── EnvironmentVariableTests.swift ├── ExpirableTests └── ExpirableTests.swift ├── LateInitTests └── LateInitTests.swift ├── LazyTests ├── LazyConstantTests.swift └── LazyTests.swift ├── LinuxMain.swift ├── TrimmedTests └── TrimmedTests.swift ├── UndoRedoTests └── UndoRedoTests.swift ├── UserDefaultTests └── UserDefaultTests.swift └── XCTestManifests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/.gitignore -------------------------------------------------------------------------------- /Burritos.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Burritos.podspec -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/README.md -------------------------------------------------------------------------------- /Sources/AtomicWrite/AtomicWrite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Sources/AtomicWrite/AtomicWrite.swift -------------------------------------------------------------------------------- /Sources/Clamping/Clamping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Sources/Clamping/Clamping.swift -------------------------------------------------------------------------------- /Sources/Copying/Copying.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Sources/Copying/Copying.swift -------------------------------------------------------------------------------- /Sources/DefaultValue/DefaultValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Sources/DefaultValue/DefaultValue.swift -------------------------------------------------------------------------------- /Sources/DynamicUIColor/DynamicUIColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Sources/DynamicUIColor/DynamicUIColor.swift -------------------------------------------------------------------------------- /Sources/EnvironmentVariable/EnvironmentVariable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Sources/EnvironmentVariable/EnvironmentVariable.swift -------------------------------------------------------------------------------- /Sources/Expirable/Expirable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Sources/Expirable/Expirable.swift -------------------------------------------------------------------------------- /Sources/LateInit/LateInit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Sources/LateInit/LateInit.swift -------------------------------------------------------------------------------- /Sources/Lazy/Lazy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Sources/Lazy/Lazy.swift -------------------------------------------------------------------------------- /Sources/LazyConstant/LazyConstant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Sources/LazyConstant/LazyConstant.swift -------------------------------------------------------------------------------- /Sources/Trimmed/Trimmed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Sources/Trimmed/Trimmed.swift -------------------------------------------------------------------------------- /Sources/UndoRedo/UndoRedo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Sources/UndoRedo/UndoRedo.swift -------------------------------------------------------------------------------- /Sources/UserDefault/UserDefault.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Sources/UserDefault/UserDefault.swift -------------------------------------------------------------------------------- /Tests/AtomicWriteTests/AtomicWriteTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Tests/AtomicWriteTests/AtomicWriteTests.swift -------------------------------------------------------------------------------- /Tests/ClampingTests/ClampingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Tests/ClampingTests/ClampingTests.swift -------------------------------------------------------------------------------- /Tests/CopyingTests/CopyingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Tests/CopyingTests/CopyingTests.swift -------------------------------------------------------------------------------- /Tests/DefaultValueTests/DefaultValueTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Tests/DefaultValueTests/DefaultValueTests.swift -------------------------------------------------------------------------------- /Tests/DynamicUIColorTests/DynamicUIColorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Tests/DynamicUIColorTests/DynamicUIColorTests.swift -------------------------------------------------------------------------------- /Tests/EnvironmentVariableTests/EnvironmentVariableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Tests/EnvironmentVariableTests/EnvironmentVariableTests.swift -------------------------------------------------------------------------------- /Tests/ExpirableTests/ExpirableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Tests/ExpirableTests/ExpirableTests.swift -------------------------------------------------------------------------------- /Tests/LateInitTests/LateInitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Tests/LateInitTests/LateInitTests.swift -------------------------------------------------------------------------------- /Tests/LazyTests/LazyConstantTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Tests/LazyTests/LazyConstantTests.swift -------------------------------------------------------------------------------- /Tests/LazyTests/LazyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Tests/LazyTests/LazyTests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/TrimmedTests/TrimmedTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Tests/TrimmedTests/TrimmedTests.swift -------------------------------------------------------------------------------- /Tests/UndoRedoTests/UndoRedoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Tests/UndoRedoTests/UndoRedoTests.swift -------------------------------------------------------------------------------- /Tests/UserDefaultTests/UserDefaultTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Tests/UserDefaultTests/UserDefaultTests.swift -------------------------------------------------------------------------------- /Tests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillermomuntaner/Burritos/HEAD/Tests/XCTestManifests.swift --------------------------------------------------------------------------------