Garden 🌻

Dict::items()

Return a list of all the items in this dict. Items are returned in alphabetical order.

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