aboutsummaryrefslogtreecommitdiff
path: root/lib/std/priority_dequeue.zig
AgeCommit message (Expand)Author
2024-07-23add std.testing.random_seedAndrew Kelley
2024-02-26Remove redundant test name prefixes now that test names are fully qualifiedRyan Liptak
2024-02-08Replace std.rand references with std.Randome4m2
2023-11-19lib: correct unnecessary uses of 'var'mlugg
2023-10-23x86_64: implement 128-bit builtinsJacob Young
2023-10-22Revert "Revert "Merge pull request #17637 from jacobly0/x86_64-test-std""Jacob Young
2023-10-22Revert "Merge pull request #17637 from jacobly0/x86_64-test-std"Andrew Kelley
2023-10-21x86_64: disable failing tests, enable test-std testingJacob Young
2023-10-12Update docs of PriorityQueue.iterator() and PriorityDeque.iterator()Alexander Heinrich
2023-06-22[priority_dequeue] Fix out-of-bounds accessNiles Salter
2023-06-22[priority_deque] simplify & optimize isMinLayerNiles Salter
2023-05-08Disallow named test decls with duplicate namesDominic
2023-02-18update std lib and compiler sources to new for loop syntaxAndrew Kelley
2022-12-13std: Fix update() method in PriorityQueue and PriorityDequeue (#13908)Frechdachs
2022-09-16std: remove deprecated API for the upcoming releaseAndrew Kelley
2022-08-22stage2+stage1: remove type parameter from bit builtinsVeikka Tuominen
2022-07-25PriorityDequeue: use compareFn in update() methodVÖRÖSKŐI András
2021-12-15std.priority_dequeue: allow comparator to take a context parameterArnavion
2021-11-30allocgate: std Allocator interface refactorLee Cannon
2021-11-30std lib API deprecations for the upcoming 0.9.0 releaseAndrew Kelley
2021-10-27std.rand: Refactor `Random` interfaceOminitay
2021-10-17Move `compareFn` from init to type constructor in `PriorityQueue` and `Priori...Max Hollmann
2021-09-19std.PriorityDequeue: ensureUnusedCapacity and ensureTotalCapacityRyan Liptak
2021-08-24remove redundant license headers from zig standard libraryAndrew Kelley
2021-06-21fix code broken from previous commitJacob G-W
2021-05-12fix shrinkAndFree and remove shrinkRetainingCapacity in PriorityQueue and Pri...Matthew Borkowski
2021-05-08std: update usage of std.testingVeikka Tuominen
2021-01-18Change `compareFn` to `fn (a: T, b: T) std.math.Order`Zander Khan
2021-01-17Remove `resize`. Adding uninitialized memory at the end of the `items` would ...Zander Khan
2021-01-17Replace `shrink` with `shrinkAndFree` and `shrinkRetainingCapacity`Zander Khan
2021-01-16Fix slice length when updatingZander Khan
2021-01-16Fix update might change an element no longer in the queueZander Khan
2021-01-16Rename heap to queue in tests for consistencyZander Khan
2021-01-16Fix edge cases in fromOwnedSliceZander Khan
2021-01-16Ensure we cannot remove an item outside the current length of the queueZander Khan
2021-01-16Remove magic numberZander Khan
2021-01-16Add license to top of fileZander Khan
2021-01-16std: Add Priority DequeueZander Khan