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

start_with?

        # String.start_with?

(from ruby core)
---
    str.start_with?([prefixes]+)   -> true or false

---

Returns true if `str` starts with one of the `prefixes` given. Each of
the `prefixes` should be a String or a Regexp.

    "hello".start_with?("hell")               #=> true
    "hello".start_with?(/H/i)                 #=> true

    # returns true if one of the prefixes matches.
    "hello".start_with?("heaven", "hell")     #=> true
    "hello".start_with?("heaven", "paradise") #=> false



      

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.