Title here
Summary here
To create an empty map, use nil
and the Map
type in Idris.
Data.Map
module.Map
.insert
function.show
function to print the map.lookup
function, which returns a Maybe
type.size
function returns the number of key/value pairs in a map.delete
function removes key/value pairs from a map.empty
function clears all key/value pairs from the map.isJust
function combined with lookup
.fromList
.==
operator.