Results for: "module_function"

‘foo #{bar}` ^^^^^^^^^^^^

-> { it } ^^^^^^^^^

foo(bar: baz)

^^^^^^^^

foo in bar ^^^^^^^^^^

foo => bar ^^^^^^^^^^

/(?<foo>foo)/ =~ bar ^^^^^^^^^^^^^^^^^^^^

-> { _1 + _2 } ^^^^^^^^^^^^^^

if foo .. bar; end

^^^^^^^^^^

def foo(bar); end

^^^

def foo(*bar); end

^^^^

def foo(*); end

^

__LINE__ ^^^^^^^^

foo => [bar]

^^^^^

def foo(**); bar(**); end

^^

{ **foo }

^^^^^

foo(&bar)

^^^^

def foo(&bar); end

^^^^

A block’s parameters.

foo.bar, = 1 ^^^^^^^

foo => bar => baz

^^^^^^^^^^

case foo; in bar; end ^^^^^^^^^^^^^^^^^^^^^

If a class variable is written within a method definition, it has a different type than everywhere else.

“foo #{bar}”

^^^^^^

foo => [*, bar, *]

^^^^^^^^^^^

if foo .. bar; end

^^^^^^^^^^

def foo(…); bar(…); end

^^^

def foo(…); end

^^^
Search took: 8ms  ·  Total Results: 3609