Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 326 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 326 Bytes

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"]