factor/extra/io/encodings/ascii/ascii.factor

16 lines
462 B
Factor
Raw Normal View History

2008-02-21 16:22:49 -05:00
! Copyright (C) 2008 Daniel Ehrenberg.
! See http://factorcode.org/license.txt for BSD license.
USING: io io.encodings strings kernel math sequences byte-arrays io.encodings ;
2008-02-16 17:25:45 -05:00
IN: io.encodings.ascii
: encode-check>= ( string max -- byte-array )
2008-02-21 16:22:49 -05:00
dupd [ >= ] curry all? [ >byte-array ] [ encode-error ] if ;
2008-02-16 17:25:45 -05:00
TUPLE: ascii ;
M: ascii encode-string
drop 127 encode-check>= ;
M: ascii decode-step
2008-02-21 16:22:49 -05:00
3drop dup 127 >= [ encode-error ] when over push f f ;