# Functions
EvictionPolicy sets the eviction policy to be used to make room for new items.
New returns a cache with the requested options configured.
# Constants
LeastRecentlyAdded indicates a least-recently-added eviction policy.
LeastRecentlyUsed indicates a least-recently-used eviction policy.
# Type aliases
CacheOption configures a cache.
Policy is a cache eviction policy for use with the EvictionPolicy CacheOption.