├── .github ├── FUNDING.yml └── workflows │ ├── build-and-test.yml │ └── documentation.yml ├── .gitignore ├── Images └── logo.jpg ├── LICENSE ├── Package.resolved ├── Package.swift ├── Package@swift-6.0.swift ├── README.md ├── Sources └── Bodega │ ├── CacheKey.swift │ ├── DiskStorageEngine.swift │ ├── Documentation.docc │ ├── Articles │ │ ├── Fundamentals │ │ │ ├── Bodega.md │ │ │ ├── Using ObjectStorage.md │ │ │ └── Using StorageEngines.md │ │ └── Walkthroughs │ │ │ └── Building An Image Cache.md │ └── Assets │ │ ├── ProfileHeaderview.png │ │ ├── StorageEngine-Read-Performance.png │ │ └── StorageEngine-Write-Performance.png │ ├── FileManager.Directory.swift │ ├── Internal │ └── String+Formatting.swift │ ├── ObjectStorage.swift │ ├── SQLiteStorageEngine+Default.swift │ ├── SQLiteStorageEngine.swift │ └── StorageEngine.swift ├── Tests └── BodegaTests │ ├── CacheKeyTests.swift │ ├── DiskStorageEngineTests.swift │ ├── ObjectStorageTests.swift │ ├── SQLiteStorageEngineTests.swift │ └── String+FormattingTests.swift └── docs ├── .gitkeep ├── css ├── documentation-topic.de084985.css ├── documentation-topic~topic~tutorials-overview.67b822e0.css ├── index.47bc740e.css ├── topic.2eb01958.css └── tutorials-overview.8754eb09.css ├── data └── documentation │ ├── bodega.json │ └── bodega │ ├── building-an-image-cache.json │ ├── cachekey.json │ ├── cachekey │ ├── !=(_:_:).json │ ├── equatable-implementations.json │ ├── init(_:).json │ ├── init(from:).json │ ├── init(url:).json │ ├── init(verbatim:).json │ └── value.json │ ├── diskstorageengine.json │ ├── diskstorageengine │ ├── allkeys().json │ ├── createdat(key:).json │ ├── init(directory:).json │ ├── keycount().json │ ├── keyexists(_:).json │ ├── lastaccessed(key:).json │ ├── read(key:).json │ ├── read(keys:).json │ ├── readalldata().json │ ├── readalldataandkeys().json │ ├── readdataandkeys(keys:).json │ ├── remove(key:).json │ ├── remove(keys:).json │ ├── removealldata().json │ ├── storageengine-implementations.json │ ├── updatedat(key:).json │ ├── write(_:).json │ └── write(_:key:).json │ ├── objectstorage.json │ ├── objectstorage │ ├── allkeys().json │ ├── allobjects().json │ ├── allobjectsandkeys().json │ ├── createdat(forkey:).json │ ├── init(storage:).json │ ├── keycount().json │ ├── object(forkey:).json │ ├── objects(forkeys:).json │ ├── objectsandkeys(keys:).json │ ├── removeallobjects().json │ ├── removeobject(forkey:).json │ ├── removeobject(forkeys:).json │ ├── store(_:).json │ ├── store(_:forkey:).json │ └── updatedat(forkey:).json │ ├── sqlitestorageengine.json │ ├── sqlitestorageengine │ ├── allkeys().json │ ├── createdat(key:).json │ ├── default(appendingpath:).json │ ├── default.json │ ├── init(directory:databasefilename:).json │ ├── keycount().json │ ├── keyexists(_:).json │ ├── read(key:).json │ ├── read(keys:).json │ ├── readalldata().json │ ├── readalldataandkeys().json │ ├── readdataandkeys(keys:).json │ ├── remove(key:).json │ ├── remove(keys:).json │ ├── removealldata().json │ ├── updatedat(key:).json │ ├── write(_:).json │ └── write(_:key:).json │ ├── storageengine.json │ ├── storageengine │ ├── allkeys().json │ ├── createdat(key:).json │ ├── keycount().json │ ├── keyexists(_:).json │ ├── read(key:).json │ ├── read(keys:)-1i8k4.json │ ├── read(keys:)-90zkt.json │ ├── readalldata()-1gzc6.json │ ├── readalldata()-56p4o.json │ ├── readalldataandkeys()-98wnz.json │ ├── readalldataandkeys()-9a3kk.json │ ├── readdataandkeys(keys:).json │ ├── remove(key:).json │ ├── remove(keys:)-2lqqc.json │ ├── remove(keys:)-fd9s.json │ ├── removealldata().json │ ├── updatedat(key:).json │ ├── write(_:).json │ └── write(_:key:).json │ ├── using-objectstorage.json │ └── using-storageengines.json ├── documentation └── bodega │ ├── building-an-image-cache │ └── index.html │ ├── cachekey │ ├── !=(_:_:) │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── index.html │ ├── init(_:) │ │ └── index.html │ ├── init(from:) │ │ └── index.html │ ├── init(url:) │ │ └── index.html │ ├── init(verbatim:) │ │ └── index.html │ └── value │ │ └── index.html │ ├── diskstorageengine │ ├── allkeys() │ │ └── index.html │ ├── createdat(key:) │ │ └── index.html │ ├── index.html │ ├── init(directory:) │ │ └── index.html │ ├── keycount() │ │ └── index.html │ ├── keyexists(_:) │ │ └── index.html │ ├── lastaccessed(key:) │ │ └── index.html │ ├── read(key:) │ │ └── index.html │ ├── read(keys:) │ │ └── index.html │ ├── readalldata() │ │ └── index.html │ ├── readalldataandkeys() │ │ └── index.html │ ├── readdataandkeys(keys:) │ │ └── index.html │ ├── remove(key:) │ │ └── index.html │ ├── remove(keys:) │ │ └── index.html │ ├── removealldata() │ │ └── index.html │ ├── storageengine-implementations │ │ └── index.html │ ├── updatedat(key:) │ │ └── index.html │ ├── write(_:) │ │ └── index.html │ └── write(_:key:) │ │ └── index.html │ ├── index.html │ ├── objectstorage │ ├── allkeys() │ │ └── index.html │ ├── allobjects() │ │ └── index.html │ ├── allobjectsandkeys() │ │ └── index.html │ ├── createdat(forkey:) │ │ └── index.html │ ├── index.html │ ├── init(storage:) │ │ └── index.html │ ├── keycount() │ │ └── index.html │ ├── object(forkey:) │ │ └── index.html │ ├── objects(forkeys:) │ │ └── index.html │ ├── objectsandkeys(keys:) │ │ └── index.html │ ├── removeallobjects() │ │ └── index.html │ ├── removeobject(forkey:) │ │ └── index.html │ ├── removeobject(forkeys:) │ │ └── index.html │ ├── store(_:) │ │ └── index.html │ ├── store(_:forkey:) │ │ └── index.html │ └── updatedat(forkey:) │ │ └── index.html │ ├── sqlitestorageengine │ ├── allkeys() │ │ └── index.html │ ├── createdat(key:) │ │ └── index.html │ ├── default(appendingpath:) │ │ └── index.html │ ├── default │ │ └── index.html │ ├── index.html │ ├── init(directory:databasefilename:) │ │ └── index.html │ ├── keycount() │ │ └── index.html │ ├── keyexists(_:) │ │ └── index.html │ ├── read(key:) │ │ └── index.html │ ├── read(keys:) │ │ └── index.html │ ├── readalldata() │ │ └── index.html │ ├── readalldataandkeys() │ │ └── index.html │ ├── readdataandkeys(keys:) │ │ └── index.html │ ├── remove(key:) │ │ └── index.html │ ├── remove(keys:) │ │ └── index.html │ ├── removealldata() │ │ └── index.html │ ├── updatedat(key:) │ │ └── index.html │ ├── write(_:) │ │ └── index.html │ └── write(_:key:) │ │ └── index.html │ ├── storageengine │ ├── allkeys() │ │ └── index.html │ ├── createdat(key:) │ │ └── index.html │ ├── index.html │ ├── keycount() │ │ └── index.html │ ├── keyexists(_:) │ │ └── index.html │ ├── read(key:) │ │ └── index.html │ ├── read(keys:)-1i8k4 │ │ └── index.html │ ├── read(keys:)-90zkt │ │ └── index.html │ ├── readalldata()-1gzc6 │ │ └── index.html │ ├── readalldata()-56p4o │ │ └── index.html │ ├── readalldataandkeys()-98wnz │ │ └── index.html │ ├── readalldataandkeys()-9a3kk │ │ └── index.html │ ├── readdataandkeys(keys:) │ │ └── index.html │ ├── remove(key:) │ │ └── index.html │ ├── remove(keys:)-2lqqc │ │ └── index.html │ ├── remove(keys:)-fd9s │ │ └── index.html │ ├── removealldata() │ │ └── index.html │ ├── updatedat(key:) │ │ └── index.html │ ├── write(_:) │ │ └── index.html │ └── write(_:key:) │ │ └── index.html │ ├── using-objectstorage │ └── index.html │ └── using-storageengines │ └── index.html ├── favicon.ico ├── favicon.svg ├── images ├── ProfileHeaderview.png ├── StorageEngine-Read-Performance.png └── StorageEngine-Write-Performance.png ├── img ├── added-icon.d6f7e47d.svg ├── deprecated-icon.015b4f17.svg └── modified-icon.f496e73d.svg ├── index.html ├── js ├── chunk-2d0d3105.cd72cc8e.js ├── chunk-vendors.00bf82af.js ├── documentation-topic.f2001a09.js ├── documentation-topic~topic~tutorials-overview.246bafa0.js ├── highlight-js-bash.1b52852f.js ├── highlight-js-c.d1db3f17.js ├── highlight-js-cpp.eaddddbe.js ├── highlight-js-css.75eab1fe.js ├── highlight-js-custom-markdown.7cffc4b3.js ├── highlight-js-custom-swift.52388c22.js ├── highlight-js-diff.62d66733.js ├── highlight-js-http.163e45b6.js ├── highlight-js-java.8326d9d8.js ├── highlight-js-javascript.acb8a8eb.js ├── highlight-js-json.471128d2.js ├── highlight-js-llvm.6100b125.js ├── highlight-js-markdown.90077643.js ├── highlight-js-objectivec.bcdf5156.js ├── highlight-js-perl.757d7b6f.js ├── highlight-js-php.cc8d6c27.js ├── highlight-js-python.c214ed92.js ├── highlight-js-ruby.f889d392.js ├── highlight-js-scss.62ee18da.js ├── highlight-js-shell.dd7f411f.js ├── highlight-js-swift.84f3e88c.js ├── highlight-js-xml.9c3688c7.js ├── index.a5dccb71.js ├── topic.db9b660d.js └── tutorials-overview.1f626fce.js ├── metadata.json └── theme-settings.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Images/logo.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Package.swift -------------------------------------------------------------------------------- /Package@swift-6.0.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Package@swift-6.0.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Bodega/CacheKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Sources/Bodega/CacheKey.swift -------------------------------------------------------------------------------- /Sources/Bodega/DiskStorageEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Sources/Bodega/DiskStorageEngine.swift -------------------------------------------------------------------------------- /Sources/Bodega/Documentation.docc/Articles/Fundamentals/Bodega.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Sources/Bodega/Documentation.docc/Articles/Fundamentals/Bodega.md -------------------------------------------------------------------------------- /Sources/Bodega/Documentation.docc/Articles/Fundamentals/Using ObjectStorage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Sources/Bodega/Documentation.docc/Articles/Fundamentals/Using ObjectStorage.md -------------------------------------------------------------------------------- /Sources/Bodega/Documentation.docc/Articles/Fundamentals/Using StorageEngines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Sources/Bodega/Documentation.docc/Articles/Fundamentals/Using StorageEngines.md -------------------------------------------------------------------------------- /Sources/Bodega/Documentation.docc/Articles/Walkthroughs/Building An Image Cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Sources/Bodega/Documentation.docc/Articles/Walkthroughs/Building An Image Cache.md -------------------------------------------------------------------------------- /Sources/Bodega/Documentation.docc/Assets/ProfileHeaderview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Sources/Bodega/Documentation.docc/Assets/ProfileHeaderview.png -------------------------------------------------------------------------------- /Sources/Bodega/Documentation.docc/Assets/StorageEngine-Read-Performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Sources/Bodega/Documentation.docc/Assets/StorageEngine-Read-Performance.png -------------------------------------------------------------------------------- /Sources/Bodega/Documentation.docc/Assets/StorageEngine-Write-Performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Sources/Bodega/Documentation.docc/Assets/StorageEngine-Write-Performance.png -------------------------------------------------------------------------------- /Sources/Bodega/FileManager.Directory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Sources/Bodega/FileManager.Directory.swift -------------------------------------------------------------------------------- /Sources/Bodega/Internal/String+Formatting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Sources/Bodega/Internal/String+Formatting.swift -------------------------------------------------------------------------------- /Sources/Bodega/ObjectStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Sources/Bodega/ObjectStorage.swift -------------------------------------------------------------------------------- /Sources/Bodega/SQLiteStorageEngine+Default.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Sources/Bodega/SQLiteStorageEngine+Default.swift -------------------------------------------------------------------------------- /Sources/Bodega/SQLiteStorageEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Sources/Bodega/SQLiteStorageEngine.swift -------------------------------------------------------------------------------- /Sources/Bodega/StorageEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Sources/Bodega/StorageEngine.swift -------------------------------------------------------------------------------- /Tests/BodegaTests/CacheKeyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Tests/BodegaTests/CacheKeyTests.swift -------------------------------------------------------------------------------- /Tests/BodegaTests/DiskStorageEngineTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Tests/BodegaTests/DiskStorageEngineTests.swift -------------------------------------------------------------------------------- /Tests/BodegaTests/ObjectStorageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Tests/BodegaTests/ObjectStorageTests.swift -------------------------------------------------------------------------------- /Tests/BodegaTests/SQLiteStorageEngineTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Tests/BodegaTests/SQLiteStorageEngineTests.swift -------------------------------------------------------------------------------- /Tests/BodegaTests/String+FormattingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/Tests/BodegaTests/String+FormattingTests.swift -------------------------------------------------------------------------------- /docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/css/documentation-topic.de084985.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/css/documentation-topic.de084985.css -------------------------------------------------------------------------------- /docs/css/documentation-topic~topic~tutorials-overview.67b822e0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/css/documentation-topic~topic~tutorials-overview.67b822e0.css -------------------------------------------------------------------------------- /docs/css/index.47bc740e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/css/index.47bc740e.css -------------------------------------------------------------------------------- /docs/css/topic.2eb01958.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/css/topic.2eb01958.css -------------------------------------------------------------------------------- /docs/css/tutorials-overview.8754eb09.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/css/tutorials-overview.8754eb09.css -------------------------------------------------------------------------------- /docs/data/documentation/bodega.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega.json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/building-an-image-cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/building-an-image-cache.json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/cachekey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/cachekey.json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/cachekey/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/cachekey/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/cachekey/equatable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/cachekey/equatable-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/cachekey/init(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/cachekey/init(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/cachekey/init(from:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/cachekey/init(from:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/cachekey/init(url:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/cachekey/init(url:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/cachekey/init(verbatim:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/cachekey/init(verbatim:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/cachekey/value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/cachekey/value.json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/diskstorageengine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/diskstorageengine.json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/diskstorageengine/allkeys().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/diskstorageengine/allkeys().json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/diskstorageengine/createdat(key:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/diskstorageengine/createdat(key:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/diskstorageengine/init(directory:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/diskstorageengine/init(directory:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/diskstorageengine/keycount().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/diskstorageengine/keycount().json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/diskstorageengine/keyexists(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/diskstorageengine/keyexists(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/diskstorageengine/lastaccessed(key:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/diskstorageengine/lastaccessed(key:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/diskstorageengine/read(key:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/diskstorageengine/read(key:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/diskstorageengine/read(keys:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/diskstorageengine/read(keys:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/diskstorageengine/readalldata().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/diskstorageengine/readalldata().json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/diskstorageengine/readalldataandkeys().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/diskstorageengine/readalldataandkeys().json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/diskstorageengine/readdataandkeys(keys:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/diskstorageengine/readdataandkeys(keys:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/diskstorageengine/remove(key:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/diskstorageengine/remove(key:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/diskstorageengine/remove(keys:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/diskstorageengine/remove(keys:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/diskstorageengine/removealldata().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/diskstorageengine/removealldata().json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/diskstorageengine/storageengine-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/diskstorageengine/storageengine-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/diskstorageengine/updatedat(key:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/diskstorageengine/updatedat(key:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/diskstorageengine/write(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/diskstorageengine/write(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/diskstorageengine/write(_:key:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/diskstorageengine/write(_:key:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/objectstorage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/objectstorage.json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/objectstorage/allkeys().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/objectstorage/allkeys().json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/objectstorage/allobjects().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/objectstorage/allobjects().json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/objectstorage/allobjectsandkeys().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/objectstorage/allobjectsandkeys().json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/objectstorage/createdat(forkey:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/objectstorage/createdat(forkey:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/objectstorage/init(storage:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/objectstorage/init(storage:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/objectstorage/keycount().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/objectstorage/keycount().json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/objectstorage/object(forkey:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/objectstorage/object(forkey:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/objectstorage/objects(forkeys:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/objectstorage/objects(forkeys:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/objectstorage/objectsandkeys(keys:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/objectstorage/objectsandkeys(keys:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/objectstorage/removeallobjects().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/objectstorage/removeallobjects().json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/objectstorage/removeobject(forkey:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/objectstorage/removeobject(forkey:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/objectstorage/removeobject(forkeys:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/objectstorage/removeobject(forkeys:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/objectstorage/store(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/objectstorage/store(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/objectstorage/store(_:forkey:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/objectstorage/store(_:forkey:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/objectstorage/updatedat(forkey:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/objectstorage/updatedat(forkey:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/sqlitestorageengine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/sqlitestorageengine.json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/sqlitestorageengine/allkeys().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/sqlitestorageengine/allkeys().json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/sqlitestorageengine/createdat(key:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/sqlitestorageengine/createdat(key:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/sqlitestorageengine/default(appendingpath:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/sqlitestorageengine/default(appendingpath:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/sqlitestorageengine/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/sqlitestorageengine/default.json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/sqlitestorageengine/init(directory:databasefilename:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/sqlitestorageengine/init(directory:databasefilename:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/sqlitestorageengine/keycount().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/sqlitestorageengine/keycount().json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/sqlitestorageengine/keyexists(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/sqlitestorageengine/keyexists(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/sqlitestorageengine/read(key:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/sqlitestorageengine/read(key:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/sqlitestorageengine/read(keys:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/sqlitestorageengine/read(keys:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/sqlitestorageengine/readalldata().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/sqlitestorageengine/readalldata().json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/sqlitestorageengine/readalldataandkeys().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/sqlitestorageengine/readalldataandkeys().json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/sqlitestorageengine/readdataandkeys(keys:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/sqlitestorageengine/readdataandkeys(keys:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/sqlitestorageengine/remove(key:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/sqlitestorageengine/remove(key:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/sqlitestorageengine/remove(keys:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/sqlitestorageengine/remove(keys:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/sqlitestorageengine/removealldata().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/sqlitestorageengine/removealldata().json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/sqlitestorageengine/updatedat(key:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/sqlitestorageengine/updatedat(key:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/sqlitestorageengine/write(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/sqlitestorageengine/write(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/sqlitestorageengine/write(_:key:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/sqlitestorageengine/write(_:key:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/storageengine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/storageengine.json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/storageengine/allkeys().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/storageengine/allkeys().json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/storageengine/createdat(key:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/storageengine/createdat(key:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/storageengine/keycount().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/storageengine/keycount().json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/storageengine/keyexists(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/storageengine/keyexists(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/storageengine/read(key:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/storageengine/read(key:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/storageengine/read(keys:)-1i8k4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/storageengine/read(keys:)-1i8k4.json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/storageengine/read(keys:)-90zkt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/storageengine/read(keys:)-90zkt.json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/storageengine/readalldata()-1gzc6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/storageengine/readalldata()-1gzc6.json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/storageengine/readalldata()-56p4o.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/storageengine/readalldata()-56p4o.json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/storageengine/readalldataandkeys()-98wnz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/storageengine/readalldataandkeys()-98wnz.json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/storageengine/readalldataandkeys()-9a3kk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/storageengine/readalldataandkeys()-9a3kk.json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/storageengine/readdataandkeys(keys:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/storageengine/readdataandkeys(keys:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/storageengine/remove(key:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/storageengine/remove(key:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/storageengine/remove(keys:)-2lqqc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/storageengine/remove(keys:)-2lqqc.json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/storageengine/remove(keys:)-fd9s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/storageengine/remove(keys:)-fd9s.json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/storageengine/removealldata().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/storageengine/removealldata().json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/storageengine/updatedat(key:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/storageengine/updatedat(key:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/storageengine/write(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/storageengine/write(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/storageengine/write(_:key:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/storageengine/write(_:key:).json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/using-objectstorage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/using-objectstorage.json -------------------------------------------------------------------------------- /docs/data/documentation/bodega/using-storageengines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/data/documentation/bodega/using-storageengines.json -------------------------------------------------------------------------------- /docs/documentation/bodega/building-an-image-cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/building-an-image-cache/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/cachekey/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/cachekey/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/cachekey/equatable-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/cachekey/equatable-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/cachekey/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/cachekey/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/cachekey/init(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/cachekey/init(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/cachekey/init(from:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/cachekey/init(from:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/cachekey/init(url:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/cachekey/init(url:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/cachekey/init(verbatim:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/cachekey/init(verbatim:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/cachekey/value/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/cachekey/value/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/diskstorageengine/allkeys()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/diskstorageengine/allkeys()/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/diskstorageengine/createdat(key:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/diskstorageengine/createdat(key:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/diskstorageengine/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/diskstorageengine/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/diskstorageengine/init(directory:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/diskstorageengine/init(directory:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/diskstorageengine/keycount()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/diskstorageengine/keycount()/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/diskstorageengine/keyexists(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/diskstorageengine/keyexists(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/diskstorageengine/lastaccessed(key:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/diskstorageengine/lastaccessed(key:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/diskstorageengine/read(key:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/diskstorageengine/read(key:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/diskstorageengine/read(keys:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/diskstorageengine/read(keys:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/diskstorageengine/readalldata()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/diskstorageengine/readalldata()/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/diskstorageengine/readalldataandkeys()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/diskstorageengine/readalldataandkeys()/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/diskstorageengine/readdataandkeys(keys:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/diskstorageengine/readdataandkeys(keys:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/diskstorageengine/remove(key:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/diskstorageengine/remove(key:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/diskstorageengine/remove(keys:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/diskstorageengine/remove(keys:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/diskstorageengine/removealldata()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/diskstorageengine/removealldata()/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/diskstorageengine/storageengine-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/diskstorageengine/storageengine-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/diskstorageengine/updatedat(key:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/diskstorageengine/updatedat(key:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/diskstorageengine/write(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/diskstorageengine/write(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/diskstorageengine/write(_:key:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/diskstorageengine/write(_:key:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/objectstorage/allkeys()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/objectstorage/allkeys()/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/objectstorage/allobjects()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/objectstorage/allobjects()/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/objectstorage/allobjectsandkeys()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/objectstorage/allobjectsandkeys()/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/objectstorage/createdat(forkey:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/objectstorage/createdat(forkey:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/objectstorage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/objectstorage/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/objectstorage/init(storage:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/objectstorage/init(storage:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/objectstorage/keycount()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/objectstorage/keycount()/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/objectstorage/object(forkey:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/objectstorage/object(forkey:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/objectstorage/objects(forkeys:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/objectstorage/objects(forkeys:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/objectstorage/objectsandkeys(keys:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/objectstorage/objectsandkeys(keys:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/objectstorage/removeallobjects()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/objectstorage/removeallobjects()/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/objectstorage/removeobject(forkey:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/objectstorage/removeobject(forkey:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/objectstorage/removeobject(forkeys:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/objectstorage/removeobject(forkeys:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/objectstorage/store(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/objectstorage/store(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/objectstorage/store(_:forkey:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/objectstorage/store(_:forkey:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/objectstorage/updatedat(forkey:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/objectstorage/updatedat(forkey:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/sqlitestorageengine/allkeys()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/sqlitestorageengine/allkeys()/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/sqlitestorageengine/createdat(key:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/sqlitestorageengine/createdat(key:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/sqlitestorageengine/default(appendingpath:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/sqlitestorageengine/default(appendingpath:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/sqlitestorageengine/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/sqlitestorageengine/default/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/sqlitestorageengine/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/sqlitestorageengine/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/sqlitestorageengine/init(directory:databasefilename:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/sqlitestorageengine/init(directory:databasefilename:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/sqlitestorageengine/keycount()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/sqlitestorageengine/keycount()/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/sqlitestorageengine/keyexists(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/sqlitestorageengine/keyexists(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/sqlitestorageengine/read(key:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/sqlitestorageengine/read(key:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/sqlitestorageengine/read(keys:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/sqlitestorageengine/read(keys:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/sqlitestorageengine/readalldata()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/sqlitestorageengine/readalldata()/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/sqlitestorageengine/readalldataandkeys()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/sqlitestorageengine/readalldataandkeys()/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/sqlitestorageengine/readdataandkeys(keys:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/sqlitestorageengine/readdataandkeys(keys:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/sqlitestorageengine/remove(key:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/sqlitestorageengine/remove(key:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/sqlitestorageengine/remove(keys:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/sqlitestorageengine/remove(keys:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/sqlitestorageengine/removealldata()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/sqlitestorageengine/removealldata()/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/sqlitestorageengine/updatedat(key:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/sqlitestorageengine/updatedat(key:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/sqlitestorageengine/write(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/sqlitestorageengine/write(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/sqlitestorageengine/write(_:key:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/sqlitestorageengine/write(_:key:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/storageengine/allkeys()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/storageengine/allkeys()/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/storageengine/createdat(key:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/storageengine/createdat(key:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/storageengine/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/storageengine/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/storageengine/keycount()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/storageengine/keycount()/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/storageengine/keyexists(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/storageengine/keyexists(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/storageengine/read(key:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/storageengine/read(key:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/storageengine/read(keys:)-1i8k4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/storageengine/read(keys:)-1i8k4/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/storageengine/read(keys:)-90zkt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/storageengine/read(keys:)-90zkt/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/storageengine/readalldata()-1gzc6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/storageengine/readalldata()-1gzc6/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/storageengine/readalldata()-56p4o/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/storageengine/readalldata()-56p4o/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/storageengine/readalldataandkeys()-98wnz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/storageengine/readalldataandkeys()-98wnz/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/storageengine/readalldataandkeys()-9a3kk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/storageengine/readalldataandkeys()-9a3kk/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/storageengine/readdataandkeys(keys:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/storageengine/readdataandkeys(keys:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/storageengine/remove(key:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/storageengine/remove(key:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/storageengine/remove(keys:)-2lqqc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/storageengine/remove(keys:)-2lqqc/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/storageengine/remove(keys:)-fd9s/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/storageengine/remove(keys:)-fd9s/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/storageengine/removealldata()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/storageengine/removealldata()/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/storageengine/updatedat(key:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/storageengine/updatedat(key:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/storageengine/write(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/storageengine/write(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/storageengine/write(_:key:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/storageengine/write(_:key:)/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/using-objectstorage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/using-objectstorage/index.html -------------------------------------------------------------------------------- /docs/documentation/bodega/using-storageengines/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/documentation/bodega/using-storageengines/index.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/images/ProfileHeaderview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/images/ProfileHeaderview.png -------------------------------------------------------------------------------- /docs/images/StorageEngine-Read-Performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/images/StorageEngine-Read-Performance.png -------------------------------------------------------------------------------- /docs/images/StorageEngine-Write-Performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/images/StorageEngine-Write-Performance.png -------------------------------------------------------------------------------- /docs/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/img/added-icon.d6f7e47d.svg -------------------------------------------------------------------------------- /docs/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/img/deprecated-icon.015b4f17.svg -------------------------------------------------------------------------------- /docs/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/img/modified-icon.f496e73d.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/chunk-2d0d3105.cd72cc8e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/chunk-2d0d3105.cd72cc8e.js -------------------------------------------------------------------------------- /docs/js/chunk-vendors.00bf82af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/chunk-vendors.00bf82af.js -------------------------------------------------------------------------------- /docs/js/documentation-topic.f2001a09.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/documentation-topic.f2001a09.js -------------------------------------------------------------------------------- /docs/js/documentation-topic~topic~tutorials-overview.246bafa0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/documentation-topic~topic~tutorials-overview.246bafa0.js -------------------------------------------------------------------------------- /docs/js/highlight-js-bash.1b52852f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/highlight-js-bash.1b52852f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-c.d1db3f17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/highlight-js-c.d1db3f17.js -------------------------------------------------------------------------------- /docs/js/highlight-js-cpp.eaddddbe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/highlight-js-cpp.eaddddbe.js -------------------------------------------------------------------------------- /docs/js/highlight-js-css.75eab1fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/highlight-js-css.75eab1fe.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-markdown.7cffc4b3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/highlight-js-custom-markdown.7cffc4b3.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-swift.52388c22.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/highlight-js-custom-swift.52388c22.js -------------------------------------------------------------------------------- /docs/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/highlight-js-diff.62d66733.js -------------------------------------------------------------------------------- /docs/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/highlight-js-http.163e45b6.js -------------------------------------------------------------------------------- /docs/js/highlight-js-java.8326d9d8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/highlight-js-java.8326d9d8.js -------------------------------------------------------------------------------- /docs/js/highlight-js-javascript.acb8a8eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/highlight-js-javascript.acb8a8eb.js -------------------------------------------------------------------------------- /docs/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/highlight-js-json.471128d2.js -------------------------------------------------------------------------------- /docs/js/highlight-js-llvm.6100b125.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/highlight-js-llvm.6100b125.js -------------------------------------------------------------------------------- /docs/js/highlight-js-markdown.90077643.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/highlight-js-markdown.90077643.js -------------------------------------------------------------------------------- /docs/js/highlight-js-objectivec.bcdf5156.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/highlight-js-objectivec.bcdf5156.js -------------------------------------------------------------------------------- /docs/js/highlight-js-perl.757d7b6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/highlight-js-perl.757d7b6f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-php.cc8d6c27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/highlight-js-php.cc8d6c27.js -------------------------------------------------------------------------------- /docs/js/highlight-js-python.c214ed92.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/highlight-js-python.c214ed92.js -------------------------------------------------------------------------------- /docs/js/highlight-js-ruby.f889d392.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/highlight-js-ruby.f889d392.js -------------------------------------------------------------------------------- /docs/js/highlight-js-scss.62ee18da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/highlight-js-scss.62ee18da.js -------------------------------------------------------------------------------- /docs/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/highlight-js-shell.dd7f411f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-swift.84f3e88c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/highlight-js-swift.84f3e88c.js -------------------------------------------------------------------------------- /docs/js/highlight-js-xml.9c3688c7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/highlight-js-xml.9c3688c7.js -------------------------------------------------------------------------------- /docs/js/index.a5dccb71.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/index.a5dccb71.js -------------------------------------------------------------------------------- /docs/js/topic.db9b660d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/topic.db9b660d.js -------------------------------------------------------------------------------- /docs/js/tutorials-overview.1f626fce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/js/tutorials-overview.1f626fce.js -------------------------------------------------------------------------------- /docs/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/metadata.json -------------------------------------------------------------------------------- /docs/theme-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/Bodega/HEAD/docs/theme-settings.json --------------------------------------------------------------------------------