ngs-lang / ngs

Next Generation Shell (NGS)
https://ngs-lang.org/
GNU General Public License v3.0
1.46k stars 41 forks source link

Allow optional parameters not only in the end of parameters list #473

Open ilyash opened 3 years ago

ilyash commented 3 years ago

Use case: F deeper(mc:MatchContext, new_fields:Hash, cb:Fun), where new_fields is optional

Currently implemented as additional method: F deeper(mc:MatchContext, cb:Fun) deeper(mc, {}, cb)