From 6eff4cc7381d41e820dafe0f9bde5ab30c8deeda Mon Sep 17 00:00:00 2001 From: Michiel Borkent Date: Tue, 5 Apr 2022 11:15:02 +0200 Subject: [PATCH] Add missing methods on iterator --- src/babashka/impl/reify.clj | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/babashka/impl/reify.clj b/src/babashka/impl/reify.clj index f9f5895a..a776651b 100644 --- a/src/babashka/impl/reify.clj +++ b/src/babashka/impl/reify.clj @@ -161,7 +161,9 @@ java.util.Iterator {hasNext [[this]] - next [[this]]} + next [[this]] + remove [[this]] + forEachRemaining [[this action]]} java.util.function.Function {apply [[this t]]}