BiMultiMap.size
You're seeing just the function
size
, go back to BiMultiMap module for more information.
Specs
size(t()) :: non_neg_integer()
Returns the number of elements in bimultimap
.
The size of a bimultimap is the number of key-value pairs that the map contains.
Examples
iex> BiMultiMap.size(BiMultiMap.new)
0
iex> bimultimap = BiMultiMap.new([a: "foo", a: "bar"])
iex> BiMultiMap.size(bimultimap)
2