Swift Fixed Array Mapper
The fixed_array_mapper maps from a string that contains a list of filenames into a file array.
parameter | Meaning |
files | A string that contains a list of filenames, separated by space, comma or colon |
Example:
file texts[] <fixed_array_mapper;files="file1.txt, fileB.txt, file3.txt">;
would cause a mapping like this:
Swift variable | filename |
texts[0] | file1.txt |
texts[1] | fileB.txt |
texts[2] | file3.txt |