schmittsfn / BiDictionary

A bi-directional dictionary/map for the Swift programming language.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

logo

A bi-directional dictionary/map for the Swift programming language.

Usage:

var biDict = BiDictionary<String, String>()
biDict[key: "foo"] = "bar"

let value = biDict[key: "foo"]
let key = biDict[value: "bar"]

About

A bi-directional dictionary/map for the Swift programming language.

License:MIT License


Languages

Language:Swift 100.0%