Difference between revisions of "Array.suffix()"
Jump to navigation
Jump to search
(One intermediate revision by the same user not shown) | |||
Line 32: | Line 32: | ||
|} | |} | ||
− | See also [[Array.prefix()]] | + | ==See also== |
+ | [[Array.prefix() |prefix]] | ||
+ | |||
+ | [[Array.pieces() |pieces]] |
Latest revision as of 03:29, 8 May 2020
Array.suffix(Suffix)
Returns an array with the Suffix applied to each element.
1..10.suffix("suf")
1suf |
2suf |
3suf |
4suf |
5suf |
6suf |
7suf |
8suf |
9suf |
10suf |