aboutsummaryrefslogtreecommitdiff
path: root/std/sort.zig
AgeCommit message (Expand)Author
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