Handbook
Glossary
string>byte-array-fast ( string -- byte-array )
Vocabulary
io
.
encodings
.
private
Inputs
string
an
object
Outputs
byte-array
an
object
Definition
USING:
byte-arrays
kernel
kernel.private
math
sequences
sequences.private
strings
strings.private
;
IN:
io.encodings.private
:
string>byte-array-fast
( string -- byte-array )
{
string
}
declare
[
length
]
keep
over
(byte-array)
[
[
[
[
string-nth-fast
]
keepd
]
[
set-nth-unsafe
]
bi*
]
2curry
each-integer
]
keep
;
inline