LambdaParameter
data class LambdaParameter(val name: String, val isOptional: Boolean = false, val isExplicitlyBody: Boolean = false)
A declared parameter of a Lambda.
Parameters
name
name of the parameter
isOptional
whether the corresponding argument can be omitted
isExplicitlyBody
whether the parameter is reserved for the body argument when the lambda is registered as a function (see com.quarkdown.core.function.FunctionParameter.isExplicitlyBody).