VIEW MORE ARTICLES
Rinas Writes

October 09, 2022

TIL in Ruby: `arity`
Returns the number of mandatory arguments.
If the block is declared to take no arguments, returns 0.
If the block is known to take exactly n arguments, returns n.
If the block has optional arguments, returns -n-1

arity method in ruby