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
/
std
/
sort.zig
Age
Commit message (
Expand
)
Author
2019-03-02
rename std lib files to new convention
Andrew Kelley
2019-02-08
std.debug.assert: remove special case for test builds
Andrew Kelley
2018-11-13
New Zig formal grammar (#1685)
Jimmi Holst Christensen
2018-10-15
Solve the return type ambiguity (#1628)
Jimmi Holst Christensen
2018-07-11
Add generic comparator generator functions for sorting
Marc Tiehuis
2018-05-31
use * for pointer type instead of &
Andrew Kelley
2018-05-30
run zig fmt on the codebase
Andrew Kelley
2018-05-29
run zig fmt on the codebase
Andrew Kelley
2018-05-10
partial conversion to post-fix pointer deref using zig fmt
Andrew Kelley
2018-03-29
fix examples and rename std.rand.Rand to std.rand.Random
Andrew Kelley
2018-03-30
Rewrite Rand functions
Marc Tiehuis
2018-03-09
don't memoize comptime functions if they can mutate state via parameters
Andrew Kelley
2018-02-12
remove std.heap.IncrementingAllocator
Andrew Kelley
2018-01-25
syntax: functions require return type. remove `->`
Andrew Kelley
2018-01-14
remove 32-bit windows from supported targets list
Andrew Kelley
2018-01-09
remove %% prefix operator
Andrew Kelley
2017-12-22
explicitly return from blocks
Andrew Kelley
2017-12-19
add sort.min and sort.max functions to stdlib
Andrew Kelley
2017-12-14
fix missing import from previous commit
Andrew Kelley
2017-12-14
disable sort tests for 32-bit windows because of issue #537
Andrew Kelley
2017-12-14
replace quicksort with blocksort
Andrew Kelley
2017-12-02
ability to set tag values of enums
Andrew Kelley
2017-12-01
todo: fix #639
Josh Wolfe
2017-12-01
implement insertion sort. something's broken
Josh Wolfe
2017-06-14
partial implementation of printing floating point numbers with errol3
Andrew Kelley
2017-05-19
change slicing syntax from ... to ..
Andrew Kelley
2017-03-16
introduce new test syntax
Andrew Kelley
2017-02-12
slice and array re-work plus some misc. changes
Andrew Kelley
2017-02-07
std.io supports printing integers as hex values
Andrew Kelley
2017-01-22
use comptime instead of inline for var and params
Andrew Kelley
2017-01-16
Merge branch 'master' into ir-merge
Andrew Kelley
2016-11-03
sort requires compare function.
Steve Perkins
2016-11-02
sortCmp allows for a custom cmp function
Steve Perkins
2016-11-02
quicksort
Steve Perkins