# Functions

NewCache creates a new non-thread safe LRU cache whose capacity is the default size (128).
WithCapacity is an option to set cache capacity.

# Structs

Cache is used a LRU (Least recently used) cache replacement policy.

# Type aliases

Option is an option for LRU cache.