Sha256: 97fb3294b5468294411e72c8d8dd2b893c4061c16422f5a259b72d73045f4033

Contents?: true

Size: 621 Bytes

Versions: 11

Compression:

Stored size: 621 Bytes

Contents

string_array = ["str"] + ["str"]

def foo(*r)
end
foo(*string_array)

def bar(*r)
end
bar(1, *string_array)

def baz(x, *r)
end
baz(*string_array)

def qux(x, *r)
end
qux(1, *string_array)

def corge(*r, z)
end
corge(1, *string_array)

def grault(a, o=1, *r, z)
end
grault(*string_array)

__END__
# Classes
class Object
  private
  def foo: (*String r) -> nil
  def bar: (*Integer | String r) -> nil
  def baz: (String x, *String r) -> nil
  def qux: (Integer x, *String r) -> nil
  def corge: (*Integer | String r, Integer | String z) -> nil
  def grault: (String a, ?Integer | String o, *String r, String z) -> nil
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
typeprof-0.20.0 smoke/rest3.rb
typeprof-0.15.3 smoke/rest3.rb
typeprof-0.15.2 smoke/rest3.rb
typeprof-0.15.1 smoke/rest3.rb
typeprof-0.15.0 smoke/rest3.rb
typeprof-0.14.1 smoke/rest3.rb
typeprof-0.14.0 smoke/rest3.rb
typeprof-0.13.0 smoke/rest3.rb
typeprof-0.12.0 smoke/rest3.rb
typeprof-0.11.0 smoke/rest3.rb
typeprof-0.10.0 smoke/rest3.rb