Interface of kana-kanji dictionary.
Return the value given the key. Content of default_ will be returned if the key doesn't exist among the key set.
auto dictionary = new Dictionary(["Win", "hot"], ["Lose", "cold"]); assert(dictionary.get("Win") == ["Lose"]); assert(dictionary.get("hot") == ["cold"]); assert(dictionary.get("won") == []);
See Implementation
Interface of kana-kanji dictionary.