A
Size: a a a
A
Aß
Aß
Aß
(cl-defmethod seq-map (fun (string string))
(let ((result (copy-sequence string)))
(dotimes (idx (length string))
(aset result idx
(funcall fun (aref string idx))))
result))
a
Aß
(cl-defmethod seq-map (fun (str string))
(let ((result (copy-sequence str)))
(seq-do-indexed
(lambda (ch idx)
(aset result idx (funcall fun ch)))
str)
result))
Aß
Aß
a
a
F
Aß
a
Aß
a
Aß
Aß
Aß
MK