# Functions
NewExpiring creates a new expiring map whose values exist for a specific lifetime.
NewNormal creates a new normal thread safe Map.
# Structs
ExpiringMap implements the Map interface and wraps the standard NormalMap in order to implement value expiration.
NormalMap implements the Map interface using normal hash map behaviour.
# Interfaces
Map represents the interface every map provided by this package has to implement.