index
:
zig
0.10.x
0.11.x
0.12.x
0.14.x
0.15.x
0.7.x
0.8.x
0.9.x
ArrayList-reserve
Io.net
aro
ast-node-methods
async-await-demo
autofix
ci-perf-comment
ci-scripts
ci-tarballs
cli
comptime-allocator
elfv2-dyn
fixes
fuzz-macos
hcs
incr-bug
io-threaded-no-queue
jobserver
json-diagnostics
llvm-ir-nosanitize-metadata
macos-debug-info
main
make-vs-configure
master
more-doctests
new-pkg-hash
powerpc64le
restricted-function-pointers
rework-comptime-mutation
sans-aro
sha1-stream
spork8
stage2-async
threadpool
threadtheft
wasm-linker-writer
wrangle-writer-buffering
General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software. https://ziglang.org
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
std
/
priority_queue.zig
Age
Commit message (
Expand
)
Author
2021-12-15
std.priority_queue: allow comparator to take a context parameter
Arnavion
2021-11-30
allocgate: std Allocator interface refactor
Lee Cannon
2021-11-30
std lib API deprecations for the upcoming 0.9.0 release
Andrew Kelley
2021-10-17
Move `compareFn` from init to type constructor in `PriorityQueue` and `Priori...
Max Hollmann
2021-09-19
std.PriorityQueue: ensureUnusedCapacity and ensureTotalCapacity
Ryan Liptak
2021-08-24
remove redundant license headers from zig standard library
Andrew Kelley
2021-06-21
fix code broken from previous commit
Jacob G-W
2021-05-12
fix shrinkAndFree and remove shrinkRetainingCapacity in PriorityQueue and Pri...
Matthew Borkowski
2021-05-08
std: update usage of std.testing
Veikka Tuominen
2021-04-02
Merge pull request #7792 from zanderxyz/zanderxyz/priority-dequeue
Andrew Kelley
2021-02-27
HashMap.put returns !void, not a !bool
daurnimator
2021-01-18
Change `compareFn` to `fn (a: T, b: T) std.math.Order`
Zander Khan
2021-01-17
Remove `resize`. Adding uninitialized memory at the end of the `items` would ...
Zander Khan
2021-01-17
Replace `shrink` with `shrinkAndFree` and `shrinkRetainingCapacity`
Zander Khan
2021-01-16
Fix slice length when updating
Zander Khan
2021-01-16
Fix update might change an element no longer in the queue
Zander Khan
2021-01-16
Fix edge cases in fromOwnedSlice
Zander Khan
2021-01-16
Add missing import
Zander Khan
2020-12-31
Year++
Frank Denis
2020-12-09
small fixes and zig fmt
Vexu
2020-09-22
removing redundant assert
Bhargav Srinivasan
2020-09-22
return not found error correctly
Bhargav Srinivasan
2020-09-22
replace linearSearch with mem.indexOfScalar, return not found error, factor o...
Bhargav Srinivasan
2020-09-22
implemented efficient heapreplace
Bhargav Srinivasan
2020-09-22
items are not sorted, using linear search
Bhargav Srinivasan
2020-09-22
sorry, local compiler using different version of zig
Bhargav Srinivasan
2020-09-22
using binary search function from std.sort
Bhargav Srinivasan
2020-09-21
adding a function to update the priority of an element
Bhargav Srinivasan
2020-09-10
Fix issue #6303: iterating empty PriorityQueue crashes
Literally Void
2020-08-20
add license header to all std lib files
Andrew Kelley
2020-07-04
std.mem.dupe is deprecated, move all references in std
joachimschmidt557
2020-05-13
Make PriorityQueue.Iterator public
Vexu
2020-01-29
Promoted "leak_count_allocator" to the main testing.allocator
Benjamin Feng
2020-01-29
Create leak_count_allocator
Benjamin Feng
2020-01-29
Move debug.global_allocator to testing.allocator
Benjamin Feng
2020-01-08
Add removeIndex function to PriorityQueue (#4070)
Nathan Michaels
2019-12-08
std.fmt.format: tuple parameter instead of var args
Andrew Kelley
2019-11-27
remove type coercion from array values to references
Andrew Kelley
2019-11-08
update the codebase to use `@as`
Andrew Kelley
2019-10-30
Document PriorityQueue.
Nathan Michaels
2019-09-25
mv std/ lib/
Andrew Kelley