Sha256: d5a932dcc37a027bbb4d6d94216cf0be68049fdb5f65e80cc5d24052aaa31f36
Contents?: true
Size: 269 Bytes
Versions: 11
Compression:
Stored size: 269 Bytes
Contents
class Foo def foo=(x) @foo = x end def foo @foo end end Foo.new.foo = 1 Foo.new.foo = "str" Foo.new.foo __END__ # Classes class Foo @foo: Integer | String def foo=: (Integer | String x) -> (Integer | String) def foo: -> (Integer | String) end
Version data entries
11 entries across 11 versions & 1 rubygems