diff options
author | Ori Bernstein <ori@eigenstate.org> | 2017-12-30 19:23:12 -0800 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2017-12-30 19:23:12 -0800 |
commit | f4a939a2cfdc00643b02c404b0acbed382964dd0 (patch) | |
tree | 107db984a46b56f0803960155dba25977df78aae /lib/std/slpush.myr | |
parent | b4252aeded2d15592fe940e20f533f113000c61d (diff) | |
download | mc-f4a939a2cfdc00643b02c404b0acbed382964dd0.tar.gz |
Start cleaning up libstd.
minor formatting, factoring out iterutil.
Diffstat (limited to 'lib/std/slpush.myr')
-rw-r--r-- | lib/std/slpush.myr | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/std/slpush.myr b/lib/std/slpush.myr index b09069c..de3585a 100644 --- a/lib/std/slpush.myr +++ b/lib/std/slpush.myr @@ -7,12 +7,12 @@ pkg std = generic slpush = {sl, elt /* - slpush relies on implementation details - of slgrow for efficiency. Because bucket - sizes come in powers of two for all buckets - <= 32k, and by powers of 1.5 for larger - slices, this is effectively growing the - slice by powers of two. + slpush relies on implementation details + of slgrow for efficiency. Because bucket + sizes come in powers of two for all buckets + <= 32k, and by powers of 1.5 for larger + slices, this is effectively growing the + slice by powers of two. */ slgrow(sl, sl#.len + 1) sl#[sl#.len - 1] = elt |