Sha256: e1e7f8357dd94ac179d449d87cfb74d55b6e6781bff7f4207b48252cafd0e467
Contents?: true
Size: 614 Bytes
Versions: 19
Compression:
Stored size: 614 Bytes
Contents
# This is my concern # @mixin Example.Mixins.Concern = ClassMethods: # @param [String] a This is the a parameter # @param [String] b This is the a parameter # @param [String] c This is the a parameter a: (a, b, c) -> # @param [String] x This is the x parameter # @param [String] y This is the y parameter # @param [String] z This is the z parameter z: (x, y, z) -> InstanceMethods: # Say hi # @param [String] to the name hi: (to) -> # Say goodbye # @param [String] to the name goodbye: (to) -> # @concern Example.Mixins.Concern class Example.Concern
Version data entries
19 entries across 19 versions & 1 rubygems