Skip to content

Commit

Permalink
ExpressionFunction javadoc function references
Browse files Browse the repository at this point in the history
  • Loading branch information
mP1 committed Dec 6, 2023
1 parent 2f97235 commit 98d4ac9
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import java.util.stream.Collectors;

/**
* Basic contract for a namedFunction within a {@link walkingkooka.tree.expression.ExpressionEvaluationContext}
* Basic contract for a function within a {@link walkingkooka.tree.expression.ExpressionEvaluationContext}
*/
public interface ExpressionFunction<T, C extends ExpressionEvaluationContext> extends BiFunction<List<Object>, C, T>,
ExpressionPurity,
Expand All @@ -44,7 +44,7 @@ public interface ExpressionFunction<T, C extends ExpressionEvaluationContext> ex
Optional<FunctionExpressionName> ANONYMOUS_NAME = Optional.empty();

/**
* The default name for a namedFunction without any name, often used by {@link Object#toString()}.
* The default name for a function without any name, often used by {@link Object#toString()}.
*/
String ANONYMOUS = "<anonymous>";

Expand Down Expand Up @@ -77,7 +77,7 @@ default ExpressionFunction<T, C> setName(final Optional<FunctionExpressionName>
}

/**
* Returns meta info about the parameters for this namedFunction.
* Returns meta info about the parameters for this function.
*/
List<ExpressionFunctionParameter<?>> parameters(int count);

Expand Down Expand Up @@ -112,7 +112,7 @@ default void checkParameterCount(final List<Object> parameters) {
}

/**
* The return type of this namedFunction
* The return type of this function
*/
Class<T> returnType();

Expand Down

0 comments on commit 98d4ac9

Please sign in to comment.