group
Create a ParameterGroup which can be added to the Signature.
Add a group containing any valid OrderDsl provided as a lambda
order {
group {
- arg1::func1
many(arg1::func2)
option {
- arg1::func2
- arg1::func3
}
}
}
Content copied to clipboard
Minimalist way to create a group with a function call. However, this minimalist group constructor only works with OrderTokens
order {
group(arg1::func1, arg1::func2, arg1::func3)
}
Content copied to clipboard