Garden 🌻

Dict::remove()

Return a new dict that has all the same keys and values as this dict, except it does not have key.

Example
let scores = Dict["Mario" => 10, "Luigi" => 8]
scores.remove("Luigi") //-> Dict["Mario" => 10]
Source Code
public method remove<T>(this: Dict<T>, key: String): Dict<T> {
  __BUILT_IN_IMPLEMENTATION
}