factor/basis/furnace/utilities/utilities.factor

20 lines
515 B
Factor
Raw Normal View History

2008-06-16 04:34:17 -04:00
! Copyright (c) 2008 Slava Pestov
! See http://factorcode.org/license.txt for BSD license.
2008-06-30 06:13:50 -04:00
USING: accessors words kernel sequences splitting ;
2008-06-16 04:34:17 -04:00
IN: furnace.utilities
: word>string ( word -- string )
[ vocabulary>> ] [ name>> ] bi ":" swap 3append ;
2008-06-16 04:34:17 -04:00
: words>strings ( seq -- seq' )
[ word>string ] map ;
ERROR: no-such-word name vocab ;
: string>word ( string -- word )
":" split1 swap 2dup lookup dup
[ 2nip ] [ drop no-such-word ] if ;
: strings>words ( seq -- seq' )
[ string>word ] map ;