diff options
author | Ori Bernstein <ori@eigenstate.org> | 2016-01-07 21:48:13 -0800 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2016-01-07 21:48:13 -0800 |
commit | 65a5ecf2c2105ae46c7862aeb87339287bf08b46 (patch) | |
tree | 275f876907a90bad42f07a88d114e09caf964492 /lib/bio | |
parent | 79398034cd7521b60baba9dcdd2c3c51dd479f9f (diff) | |
download | mc-65a5ecf2c2105ae46c7862aeb87339287bf08b46.tar.gz |
rename fooiter -> byfoo
Diffstat (limited to 'lib/bio')
-rw-r--r-- | lib/bio/iter.myr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bio/iter.myr b/lib/bio/iter.myr index e0c103e..8661f47 100644 --- a/lib/bio/iter.myr +++ b/lib/bio/iter.myr @@ -5,10 +5,10 @@ pkg bio = type lineiter = file# impl iterable lineiter -> byte[:] - const lineiter : (f : file# -> lineiter) + const byline : (f : file# -> lineiter) ;; -const lineiter = {f +const byline = {f -> f castto(lineiter) } |