Dict::remove()
Return a new dict that has all the same keys and values as this dict, except it does not have key.
key
let scores = Dict["Mario" => 10, "Luigi" => 8] scores.remove("Luigi") //-> Dict["Mario" => 10]
public method remove<T>(this: Dict<T>, key: String): Dict<T> { __BUILT_IN_IMPLEMENTATION }