2011-10-06 13:05:27 -04:00
|
|
|
! Copyright (C) 2009,2011 Maxim Savchenko, Slava Pestov, Doug Coleman.
|
2009-07-28 12:20:28 -04:00
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2011-10-06 13:05:27 -04:00
|
|
|
USING: ascii grouping kernel math.parser sequences
|
|
|
|
strings.parser lexer math ;
|
2009-07-28 12:20:28 -04:00
|
|
|
IN: byte-arrays.hex
|
|
|
|
|
2011-10-06 13:05:27 -04:00
|
|
|
ERROR: odd-length-hex-string string ;
|
|
|
|
|
2009-07-28 12:20:28 -04:00
|
|
|
SYNTAX: HEX{
|
2013-04-06 20:02:22 -04:00
|
|
|
"}" parse-tokens concat
|
2009-07-28 12:20:28 -04:00
|
|
|
[ blank? not ] filter
|
2011-10-06 13:05:27 -04:00
|
|
|
dup length even? [ odd-length-hex-string ] unless
|
2013-04-06 20:02:22 -04:00
|
|
|
2 <groups> [ hex> ] B{ } map-as
|
2009-10-28 14:38:27 -04:00
|
|
|
suffix! ;
|