Sha256: fb1c8b119b2d759d59de8ef778eb22c9cca1ee50d7c799d979c7b9b46762550e
Contents?: true
Size: 369 Bytes
Versions: 72
Compression:
Stored size: 369 Bytes
Contents
class Foo # A complicated method def complicated(o, i, *args, &block) # ... snip ... end # The problem here is that ... # # @param *names [Array] # @return [String] def method_with_splat_parameter(*names) end # The problem here is that ... # # @param names [Array] # @return [String] def method_with_splat_parameter2(*names) end end
Version data entries
72 entries across 72 versions & 1 rubygems