fix missing import from previous commit

master
Andrew Kelley 2017-12-14 21:24:00 -05:00
parent 6bc0561d13
commit 68f6332343
1 changed files with 1 additions and 0 deletions

View File

@ -2,6 +2,7 @@ const std = @import("index.zig");
const assert = std.debug.assert;
const mem = std.mem;
const math = std.math;
const builtin = @import("builtin");
/// Stable in-place sort. O(n) best case, O(pow(n, 2)) worst case. O(1) memory (no allocator required).
pub fn insertionSort(comptime T: type, items: []T, lessThan: fn(lhs: &const T, rhs: &const T)->bool) {