Releases: JuliaCollections/DataStructures.jl
Releases · JuliaCollections/DataStructures.jl
v0.17.6
v0.17.6 (2019-11-22)
Closed issues:
- Docstrings should annotate types in the docstrings (#510)
Merged pull requests:
- Allow accumulators to take an AbstractDict (#553) (nickrobinson251)
- improved docstrings in circ_deque.jl (#551) (AtsushiSakai)
- improved docstrings in deque.jl (#550) (AtsushiSakai)
- improved docstring in circular_buffer.jl (#549) (AtsushiSakai)
v0.17.5
v0.17.4
v0.17.4 (2019-10-27)
Merged pull requests:
- Expand benchmarking in anticipation of heap ordering change (#546) (milesfrain)
- Use separate files for package benchmarks (#545) (milesfrain)
- SparseIntSet speedups (#540) (louisponet)
v0.17.3
v0.17.2
v0.17.1
v0.17.1 (2019-10-01)
Closed issues:
- Documentation on github.io not picking-up changes (#526)
- MultiDict: insert!(a, k, ARRAY) appends array instead of adding entry (#522)
sizehint!
is not implemented for heaps (#518)- Latest doc is not autodeployed (#430)
Merged pull requests:
- Adding == and empty! for queue (#536) (mcognetta)
- Add == for stack (#535) (mcognetta)
- Use PkgBenchmark to detect performance regressions for heaps (#531) (milesfrain)
- Update docs generation (minor) (#527) (kmsquire)
- MultiDict - store arrays as arrays-of-arrays (#523) (phlavenk)
- Implement sizehint! for heaps (#520) (harryscholes)
- Trie now converts val to the correct type (#519) (mcognetta)
- Added documentation for
dequeue\_pair!
(#516) (tfburns) - Adding
eltype
for containers (#513) (mcognetta)
v0.17.0
v0.16.1
v0.14.1
v0.14.1 (2019-05-22)
Closed issues:
- Add documentation for FenwickTree (#491)
- Is there any
delete!\(\)
functionality for mutable binary heaps? (#489) - collect interface does not work for PriorityQueue (#369)
Merged pull requests:
- Same behaviour for get and getkey as with julias base Dict. (#505) (altre)
- Adding the get! method for the PriorityQueue very similar to Dict. (#494) (sambitdash)
- Issue#369: Ordered iterator interface for priority queue (#493) (sambitdash)
- Added
delete!\(node\_handle\)
functionality for mutable binary heaps (#490) (Sumegh-git)
Accumulator as a Multiset, MutableLinkedList, FenwickTree
- Doc updates for accumulator
- Allow Accumulator to be used as a multiset
- Add MutableLinkedList
- Add FenwickTree