XCEssentials / ByTypeStorage

Data container that allows to store exactly one instance of any given type.

Home Page:https://xcessentials.github.io/ByTypeStorage/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GitHub License GitHub Tag Swift Package Manager Compatible Carthage Compatible Written in Swift Supported platforms Build Status

ByTypeStorage

Data container that allows to store exactly one instance of any given type

How it works

It's Dictionary-like (and Dictionary-based) key-value storage where key is derived from a type provided. Internally keys are just strings generated from a given value type full name (that includes module name, and all parent types in case of nested types). This feature allows to avoid the need of hard-coded string-based keys, improves type-safety, simplifies usage. Obviously, this data container is supposed to be used with custom data types that have some domain-specific semantics in their names and every value associated with this type supposed to be unique within each given storage.

About

Data container that allows to store exactly one instance of any given type.

https://xcessentials.github.io/ByTypeStorage/

License:MIT License


Languages

Language:Swift 100.0%