LQueue

Build StatusHex.pm

Double-ended queue with limited length. It can hold just specified amount of elements. If more are added, the elements from the top of the queue are (by default) discarded and the new ones added to the rear of the queue.

Installation

If available in Hex, the package can be installed by adding lqueue to your list of dependencies in mix.exs:

def deps do
  [{:lqueue, "~> 1.1"}]
end

Usage

The limited queue implements the Enumerable, Collectable and Inspect protocols, so all the functions from them are available.

Apart from protocol function, there are others, implemented by LQueue module: