get-str ( state i -- ch ) (original) (raw)
Vocabulary
unicode.normalize.private
Inputs
state | an object |
---|---|
i | an object |
Outputs
ch | an object |
---|
Definition
USING: accessors kernel math sequences ;
: get-str ( state i -- ch ) swap [ i>> + ] [ str>> ] bi ?nth
; inline