Deque
Deque copied to clipboard
Double-ended queue
Would a rotate function be useful? Similar how [python](https://docs.python.org/2/library/collections.html#collections.deque) has it.
Currently growth of the deque operates by doubling in size. unfortunately this means that its old memory is never a sufficient size to be reallocated by the growing deque. See:...
### Summary I wish for the nuget packages to have the repository url set ### Details By providing the repo url it will make it easier to contribute and can...
closes #10
- Added factory methods because overloaded constructors taking `(ReadOnlySpan span)` and `(IEnumerable collection)` would be ambiguous given an array. - This bumps the minimum .NET requirement to .NET Standard 2.1.
When items are removed or the collection is cleared, references to these "old" items are retained, preventing them from being collected by the garbage collector.