aboutsummaryrefslogtreecommitdiff
path: root/std/sort.zig
AgeCommit message (Expand)Author
2019-03-02rename std lib files to new conventionAndrew Kelley
2019-02-08std.debug.assert: remove special case for test buildsAndrew Kelley
2018-11-13New Zig formal grammar (#1685)Jimmi Holst Christensen
2018-10-15Solve the return type ambiguity (#1628)Jimmi Holst Christensen
2018-07-11Add generic comparator generator functions for sortingMarc Tiehuis
2018-05-31use * for pointer type instead of &Andrew Kelley
2018-05-30run zig fmt on the codebaseAndrew Kelley
2018-05-29run zig fmt on the codebaseAndrew Kelley
2018-05-10partial conversion to post-fix pointer deref using zig fmtAndrew Kelley
2018-03-29fix examples and rename std.rand.Rand to std.rand.RandomAndrew Kelley
2018-03-30Rewrite Rand functionsMarc Tiehuis
2018-03-09don't memoize comptime functions if they can mutate state via parametersAndrew Kelley
2018-02-12remove std.heap.IncrementingAllocatorAndrew Kelley
2018-01-25syntax: functions require return type. remove `->`Andrew Kelley
2018-01-14remove 32-bit windows from supported targets listAndrew Kelley
2018-01-09remove %% prefix operatorAndrew Kelley
2017-12-22explicitly return from blocksAndrew Kelley
2017-12-19add sort.min and sort.max functions to stdlibAndrew Kelley
2017-12-14fix missing import from previous commitAndrew Kelley
2017-12-14disable sort tests for 32-bit windows because of issue #537Andrew Kelley
2017-12-14replace quicksort with blocksortAndrew Kelley
2017-12-02ability to set tag values of enumsAndrew Kelley
2017-12-01todo: fix #639Josh Wolfe
2017-12-01implement insertion sort. something's brokenJosh Wolfe
2017-06-14partial implementation of printing floating point numbers with errol3Andrew Kelley
2017-05-19change slicing syntax from ... to ..Andrew Kelley
2017-03-16introduce new test syntaxAndrew Kelley
2017-02-12slice and array re-work plus some misc. changesAndrew Kelley
2017-02-07std.io supports printing integers as hex valuesAndrew Kelley
2017-01-22use comptime instead of inline for var and paramsAndrew Kelley
2017-01-16Merge branch 'master' into ir-mergeAndrew Kelley
2016-11-03sort requires compare function.Steve Perkins
2016-11-02sortCmp allows for a custom cmp functionSteve Perkins
2016-11-02quicksortSteve Perkins