toStrings
Given a list-like collection, produce a slice of strings.
list 1 2 3 | toStrings
The above converts 1
to "1"
, 2
to "2"
, and so on, and then returns
them as a list.
Given a list-like collection, produce a slice of strings.
list 1 2 3 | toStrings
The above converts 1
to "1"
, 2
to "2"
, and so on, and then returns
them as a list.