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

search_full

        # StringScanner.search_full

(from ruby core)
---
    search_full(pattern, advance_pointer_p, return_string_p)

---

Scans the string *until* the `pattern` is matched. Advances the scan
pointer if `advance_pointer_p`, otherwise not. Returns the matched
string if `return_string_p` is true, otherwise returns the number of
bytes advanced. This method does affect the match register.



      

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.