get-str ( state i -- ch ) (original) (raw)

get-str ( state i -- ch )

Vocabulary
unicode.normalize.private

Inputs

state an object
i an object

Outputs

ch an object

Definition

USING: accessors kernel math sequences ;

IN: unicode.normalize.private

: get-str ( state i -- ch ) swap [ i>> + ] [ str>> ] bi ?nth
; inline