On Mon Jun 24 16:26:37 EDT 2013, [email protected] wrote:
> erik quanstrom <[email protected]> wrote:
>  |all the other rune tables work this way.  there is one
>  |table per property.  having a structure doesn't fit the
>  |current programming interface, nor usage.
> 
> uuh, ok, 9atom seems to have seen a lot of progress compared to
> what i have yet looked at.

just a few tables.  and a bit of time spent applying them.  ;-) 
if you have plan 9 installed and can 

        nflag=-n srv $nflag -q tcp!atom.9atom.org atom &&
                mount $nflag /srv/atom /n/atom atom

then the tables, &c. are in /n/atom/plan9/sys/src/libc/port.
the awk code to generate them, and the supporting functions
are in /n/atom/plan9/sys/src/cmd/runetype.

a particularlly nifty (if straightforward) application is grep -I, which is like
grep -i, but translates its input with tolowerrune(tobaserune(r))
rather than tolower(c).  also straightforward is rune/case, which is
like tr 'A-Z' 'a-z', except generalized for unicode.

see also,
http://www.9atom.org/magic/man2html/1/rune
http://www.9atom.org/magic/man2html/2/isalpharune
http://www.9atom.org/magic/man2html/2/runeclass

- erik

Reply via email to