Cyclist
Last updated
Last updated
Cyclist is an efficient cyclic list implemention for Javascript. It is available through npm
Cyclist allows you to create a list of fixed size that is cyclic. In a cyclist list the element following the last one is the first one. This property can be really useful when for example trying to order data packets that can arrive out of order over a network stream.
cyclist(size)
creates a new buffer
cyclist#get(index)
get an object stored in the buffer
cyclist#put(index,value)
insert an object into the buffer
cyclist#del(index)
delete an object from an index
cyclist#size
property containing current size of buffer
MIT