Package-level declarations
Types
Link copied to clipboard
A function that can be called from a Quarkdown source via a FunctionCall.
Link copied to clipboard
data class SimpleFunction<T : OutputValue<*>>(val name: String, val parameters: List<FunctionParameter<*>>, val validators: List<FunctionCallValidator<T>> = emptyList(), val invoke: (ArgumentBindings) -> T) : Function<T>
A basic Function implementation.