KoneLazyList
Represents a settable list which elements are either set and stored in an array or marked to be initialised by the provided generator.
Implementation details
This implementation holds size value, generator function, and buffer array of size size. Each time value with index i
is accessed, either the i
th value from buffer is used or generator is invoked on i
to return resulting value. The computed by generator value is stored in the buffer the moment generator's invocation is finished.
That means that at the beginning the buffer is empty. Right after that access to any i
th element would invoke generator on i
, store its result in buffer and return this result. But if you at first set some value x
to the i
th index then the value is stored in the i
th position in buffer. And after that access i
th element returns x
without extra actions.
To represent presence or absence of the i
th value, Some and None are used respectively.
Time complexity of operations
Be aware that the formulas do not include generator time invocation!
Operation | Worst case | Average |
---|---|---|
size | \(\Theta(1)\) | \(\Theta(1)\) |
get | \(\Theta(1)\) | \(\Theta(1)\) |
set | \(\Theta(1)\) | \(\Theta(1)\) |
iterator | \(\Theta(1)\) | \(\Theta(1)\) |
iteratorFrom | \(\Theta(1)\) | \(\Theta(1)\) |
iterator.hasNext | \(\Theta(1)\) | \(\Theta(1)\) |
iterator.hasPrevious | \(\Theta(1)\) | \(\Theta(1)\) |
iterator.getNext | \(\Theta(1)\) | \(\Theta(1)\) |
iterator.getPrevious | \(\Theta(1)\) | \(\Theta(1)\) |
iterator.setNext | \(\Theta(1)\) | \(\Theta(1)\) |
iterator.setPrevious | \(\Theta(1)\) | \(\Theta(1)\) |
iterator.moveNext | \(\Theta(1)\) | \(\Theta(1)\) |
iterator.movePrevious | \(\Theta(1)\) | \(\Theta(1)\) |
iterator.nextIndex | \(\Theta(1)\) | \(\Theta(1)\) |
iterator.previousIndex | \(\Theta(1)\) | \(\Theta(1)\) |
Functions
Checks if the iterable is not empty.
Initiates an iterator over the collection's elements with pointer before the first element.
Initiates an iterator over the collection's elements with pointer between elements with indices index - 1
and index
correspondingly.