From e392d411fadca54d3b79337757893df7627a4c66 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Tue, 2 Dec 2014 16:43:05 -0500 Subject: [PATCH] Short-hand partial application example added to README.md --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 996db0b..8827e5c 100644 --- a/README.md +++ b/README.md @@ -70,11 +70,17 @@ the output included within a distribution. ### Partial Applications Dynamic function applications using `f:apply` are partially applied if the number of arguments provided is less than the arity of the target -function. +function. For convenience, the `apply-gen` stylesheet will also +generate functions to perform partial application without the use of +`f:apply` for the first call, as in the first example below: ```xml + + + @@ -84,6 +90,7 @@ function. ```