>txon ( object -- string )


Vocabulary
txon

Definition
IN: txon

GENERIC: >txon ( object -- string )


Methods
USING: assocs formatting kernel sequences txon txon.private ;

M: assoc >txon
>alist
[ first2 [ encode-value ] [ >txon ] bi* "%s:`%s`" sprintf ]
map "\n" join ;


USING: math math.parser txon ;

M: number >txon number>string >txon ;


USING: sequences txon ;

M: sequence >txon [ >txon ] map "\n" join ;


USING: strings txon txon.private ;

M: string >txon encode-value ;