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

scan_full

        # StringScanner.scan_full

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

---

Tests whether the given `pattern` is matched from the current scan
pointer. Advances the scan pointer if `advance_pointer_p` is true.
Returns the matched string if `return_string_p` is true. The match
register is affected.

"full" means "#scan with full parameters".



      

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.