Dict::items()
Return a list of all the items in this dict. Items are returned in alphabetical order.
let scores = Dict["Mario" => 10, "Luigi" => 8] scores.items() //-> [("Luigi", 8), ("Mario", 10)]
public method items<T>(this: Dict<T>): List<(String, T)> { __BUILT_IN_IMPLEMENTATION }