diff --git a/README.md b/README.md index bca9c12..dcba6db 100644 --- a/README.md +++ b/README.md @@ -3,4 +3,7 @@ `Generics` is a collection of generic thread-safe Go utility packages: - `Stack`: A LIFO ('Last In, First Out') stack implementation. -- `Queue`: A FIFO ('First In, First Out') queue implementation. \ No newline at end of file +- `Queue`: A FIFO ('First In, First Out') queue implementation. +- `Cache`: A cache implementation. +- `LRU Cache`: A LRU ('Last Recently Used') cache implementation. +- `LFU Cache`: A LFU ('Least Frequently Used') cache implementation.