Class Methods
No documentation available
Instance Methods
No documentation available
No documentation available

Example:

x.foo = 1
        ^
x[42] = 1
  ^^^^^^^
x[] = 1
  ^^^^^

Example:

x.foo = 1
 ^^^^^^
x[42] = 1
 ^^^^^^

Example:

x.foo(42)
      ^^
x[42]
  ^^
x += 1
     ^

Example:

x.foo
 ^^^^
x.foo(42)
 ^^^^
x&.foo
 ^^^^^
x[42]
 ^^^^
x += 1
  ^

Example:

Foo::Bar
   ^^^^^

Example:

foo(42)
    ^^
foo 42
    ^^

Example:

foo(42)
^^^
foo 42
^^^

Example:

x[1] += 42
  ^^^^^^^^

Example:

x[1] += 42
 ^^^    (for [])
x[1] += 42
     ^  (for +)
x[1] += 42
 ^^^^^^ (for []=)

Example:

x.foo += 42
         ^^

Example:

x.foo += 42
 ^^^     (for foo)
x.foo += 42
      ^  (for +)
x.foo += 42
 ^^^^^^^ (for foo=)

Example:

Foo::Bar += 1
   ^^^^^^^^

Example:

x + 1
    ^

Example:

x + 1
  ^
+x
^

Example:

foo
^^^