[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Default parameter values
- From: Dirk Laurie <dirk.laurie@...>
- Date: Thu, 30 Nov 2017 13:37:22 +0200
Does a patch that allows the clumsy idiom
function(a,b,c)
a = a or 0
c = c or 1
to be replaced by
function(a=0,b,c=1)
already exist?