with-string ( str quot -- str ) (original) (raw)

with-string ( str quot -- str )

Vocabulary
unicode.normalize.private

Inputs

str an object
quot an object

Outputs

str an object

Definition

USING: accessors kernel ;

IN: unicode.normalize.private

: with-string ( str quot -- str )
over aux>> [ call ] [ drop ] if ; inline