Dict::get()
Look up key in this dict.
key
let scores = Dict["Mario" => 10, "Luigi" => 8] scores.get("Mario") //-> Some(10) scores.get("Bowser") //-> None
public method get<T>(this: Dict<T>, key: String): Option<T> { __BUILT_IN_IMPLEMENTATION }