From 210af18331e7a46368ffacfdd1bcc6a3d106cfb0 Mon Sep 17 00:00:00 2001 From: "J.R. Hill" Date: Tue, 18 May 2021 14:55:30 -0800 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 52aa948..49cba77 100644 --- a/README.md +++ b/README.md @@ -48,9 +48,9 @@ int sum = asciiSum.apply("abc"); Function combination using a lambda ```java +// Inference (e.g. with var) is not possible ToIntFunction asciiSum = s -> s.chars().sum(); -// Capturing with var is not possible int sum = asciiSum.applyAsInt("abc"); ```