From 7911d62c539ea634dc4f1c08976b7b9958d9aecc Mon Sep 17 00:00:00 2001 From: rxi Date: Fri, 20 Feb 2015 19:27:34 +0000 Subject: [PATCH] Updated `Iteratee functions` part of README for lume.reject() --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3d21b5e..0b747e1 100644 --- a/README.md +++ b/README.md @@ -431,7 +431,8 @@ lume({1, 2, 3}):each(print) -- Prints 1, 2 then 3 on separate lines ## Iteratee functions Several lume functions allow a `table`, `string` or `nil` to be used in place of their iteratee function argument. The functions that provide this behaviour -are: `map()`, `all()`, `any()`, `filter()`, `match()` and `count()`. +are: `map()`, `all()`, `any()`, `filter()`, `reject()`, `match()` and +`count()`. If the argument is `nil` then each value will return itself. ```lua