We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
given
datatype Foo = Foo( nameonly Bar: nat )
I can var f := Foo( Bar: 5 ); I can also var Foo(b) := f;
var f := Foo( Bar: 5 );
var Foo(b) := f;
I want to be able to use the named parameter. Something like var Foo(b := Bar) := f; or var Foo(bar -> b) := f;
var Foo(b := Bar) := f;
var Foo(bar -> b) := f;