···18 elemAt
19 filter
20 fromJSON
021 head
22 isInt
23 isList
···346 => [ "�" "�" "�" "�" ]
347 */
348 stringToCharacters = s:
349- map (p: substring p 1 s) (lib.range 0 (stringLength s - 1));
350351 /* Manipulate a string character by character and replace them by
352 strings before concatenating the results.
···18 elemAt
19 filter
20 fromJSON
21+ genList
22 head
23 isInt
24 isList
···347 => [ "�" "�" "�" "�" ]
348 */
349 stringToCharacters = s:
350+ genList (p: substring p 1 s) (stringLength s);
351352 /* Manipulate a string character by character and replace them by
353 strings before concatenating the results.