factor/basis/unicode/script/script.factor

17 lines
361 B
Factor
Raw Normal View History

2008-10-05 19:36:56 -04:00
! Copyright (C) 2008 Daniel Ehrenberg.
! See http://factorcode.org/license.txt for BSD license.
2011-11-29 00:26:06 -05:00
USING: interval-maps namespaces simple-flat-file ;
2008-05-05 00:33:54 -04:00
IN: unicode.script
<PRIVATE
2011-11-29 00:26:06 -05:00
SYMBOL: script-table
2008-05-05 00:33:54 -04:00
"vocab:unicode/script/Scripts.txt" load-interval-file
2011-11-29 00:26:06 -05:00
script-table set-global
2008-05-06 00:47:22 -04:00
PRIVATE>
2008-05-05 00:33:54 -04:00
: script-of ( char -- script )
2011-11-29 00:26:06 -05:00
script-table get-global interval-at ;