Appearance
Len
Returns the number of entries.
Module: Std::HashMap
Std::HashMap
func Len(self) -> uint;
uint — how many key/value pairs the map currently holds.
uint
import Std::HashMap::*; if map.Len() == 0u { // map is empty }
Cap