options>string ( options -- string )


Vocabulary
regexp.parser

Definition
USING: accessors kernel sequences ;

IN: regexp.parser

: options>string ( options -- string )
[ on>> ] [ off>> ] bi [ [ option>ch ] map ] bi@
[ "-" glue ] unless-empty "" like ;