module Vernacular::Modifiers
Constants
- TypedMethodArgs
Extends Ruby syntax to allow typed method argument declarations, as in:
def my_method(argument_a : Integer, argument_b : String); end
- TypedMethodReturns
Extends Ruby syntax to allow typed method return declarations, as in:
def my_method(argument_a, argument_b) = return_type; end