diff options
author | Bryan Jen <bryan.jen@gmail.com> | 2016-03-23 08:24:37 -0700 |
---|---|---|
committer | Bryan Jen <bryan.jen@gmail.com> | 2016-03-23 08:24:37 -0700 |
commit | db2a321434768b6b97e8c1101f6465e43c774c6d (patch) | |
tree | c0ba919936c73e94e66f4952caeff47f9f746294 /README.markdown | |
parent | b6383d259cf4917edd832ba31cf4dae2b4201235 (diff) | |
parent | 85ff2a28a83984c827985181d58c55ca8c524ed6 (diff) |
Merge pull request #581 from vicinus/master
improve suffix function to support the same feature set as prefix
Diffstat (limited to 'README.markdown')
-rw-r--r-- | README.markdown | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown index e346f4f..6cedc2a 100644 --- a/README.markdown +++ b/README.markdown @@ -904,7 +904,12 @@ Removes leading and trailing whitespace from a string or from every string insid #### `suffix` -Applies a suffix to all elements in an array. For example, `suffix(['a','b','c'], 'p')` returns ['ap','bp','cp']. *Type*: rvalue. +Applies a suffix to all elements in an array, or to the keys in a hash. +For example: +* `suffix(['a','b','c'], 'p')` returns ['ap','bp','cp'] +* `suffix({'a'=>'b','b'=>'c','c'=>'d'}, 'p')` returns {'ap'=>'b','bp'=>'c','cp'=>'d'}. + +*Type*: rvalue. #### `swapcase` |