From f179993bdc10fddf3f4e8be1ebf8da341833171b Mon Sep 17 00:00:00 2001 From: Jan Hendriks Date: Thu, 4 Jul 2024 10:07:17 +0200 Subject: [PATCH] #6963 Add Qute support to iterate long numbers, add documentation --- docs/src/main/asciidoc/qute-reference.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/qute-reference.adoc b/docs/src/main/asciidoc/qute-reference.adoc index dff500a62efb2..c5e25a21bfdf5 100644 --- a/docs/src/main/asciidoc/qute-reference.adoc +++ b/docs/src/main/asciidoc/qute-reference.adoc @@ -668,7 +668,7 @@ A section helper that defines the logic of a section can "execute" any of the bl [[loop_section]] ==== Loop Section -The loop section makes it possible to iterate over an instance of `Iterable`, `Iterator`, array, `Map` (element is a `Map.Entry`), `Stream`, `Integer` and `int` (primitive value). +The loop section makes it possible to iterate over an instance of `Iterable`, `Iterator`, array, `Map` (element is a `Map.Entry`), `Stream`, `Integer`, `Long`, `int` and `long` (primitive value). A `null` parameter value results in a no-op. This section has two flavors.