-
- All Known Subinterfaces:
Mustache.InvertibleLambda
- Enclosing class:
- Mustache
public static interface Mustache.Lambda
Handles lambdas.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
execute(Template.Fragment frag, java.io.Writer out)
Executes this lambda on the supplied template fragment.
-
-
-
Method Detail
-
execute
void execute(Template.Fragment frag, java.io.Writer out) throws java.io.IOException
Executes this lambda on the supplied template fragment. The lambda should write its results toout
.- Parameters:
frag
- the fragment of the template that was passed to the lambda.out
- the writer to which the lambda should write its output.- Throws:
java.io.IOException
-
-