as-cii (Antonio Scandurra)
- Login: as-cii
- Email: me@as-cii.com
- Registered on: 01/26/2015
- Last sign in: 04/24/2015
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 1 | 0 | 1 |
Activity
01/26/2015
-
06:20 PM Ruby Misc #10783: String#concat has an "appending" behavior
- Tsuyoshi Sawada wrote:
> I can't find the place in the documentation that says "Concatenation (aka +)". Is this your own claim? If so, then that is not incorrect.
I'll copy over the relevant excerpts.
~~~
str + other_str → new_st... -
10:05 AM Ruby Misc #10783 (Open): String#concat has an "appending" behavior
- Ruby String documentation (http://www.ruby-doc.org/core-2.2.0/String.html) introduces the two terms **Appending** and **Concatenation**:
- Concatenation (aka `+`) —Returns a new String containing other_str concatenated to str.
- Appe...