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

[]=

        # Fiddle::CStructEntity.[]=

(from ruby core)
### Implementation from CStructEntity
---
    []=(*args)

---

#### (Uses superclass method RDoc::AnyMethod: Fiddle::Pointer#[]=)
---

Set struct member `name`, to value `val`. If more arguments are
specified, writes the string of bytes to the memory at the given
`offset` and `length`.

Examples:

    my_struct = struct(['int id']).malloc
    my_struct['id'] = 1
    my_struct[0, 4] = "\x01\x00\x00\x00".b
    my_struct.id # => 1



      

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.