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

unicode_normalized?

        # String.unicode_normalized?

(from ruby core)
---
    str.unicode_normalized?(form=:nfc)

---

Checks whether `str` is in Unicode normalization form `form`, which can
be any of the four values `:nfc`, `:nfd`, `:nfkc`, or `:nfkd`. The
default is `:nfc`.

If the string is not in a Unicode Encoding, then an Exception is raised.
For details, see String#unicode_normalize.

    "a\u0300".unicode_normalized?        #=> false
    "a\u0300".unicode_normalized?(:nfd)  #=> true
    "\u00E0".unicode_normalized?         #=> true
    "\u00E0".unicode_normalized?(:nfd)   #=> false
    "\xE0".force_encoding('ISO-8859-1').unicode_normalized?
                                         #=> Encoding::CompatibilityError raised



      

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.