This is a Ruby tree! It shows every object from the Ruby Programming Language in a tree format.

concat

        # String.concat

(from ruby core)
---
    concat(*objects) -> string

---

Concatenates each object in `objects` to `self` and returns `self`:

    s = 'foo'
    s.concat('bar', 'baz') # => "foobarbaz"
    s                      # => "foobarbaz"

For each given object `object` that is an Integer, the value is
considered a codepoint and converted to a character before
concatenation:

    s = 'foo'
    s.concat(32, 'bar', 32, 'baz') # => "foo bar baz"

Related: String#<<, which takes a single argument.



      

This is MURDOC! A Ruby documentation browser inspired by Smalltalk-80. It allows you to learn about Ruby by browsing through its class hierarchies, and see any of its methods.