Using java handlebars 4.2.1 https://github.com/jknack/handlebars.java is there a way to render logic if looping over not the last item in an array?
I know that I can do this:
{{#myArray}}
{{#if @last}}
{{else}}
my rendered logic here
{{/if}}
{{/myArray}}
But I am looking for something with only one block, similar to
{{^-last}}
from mustache templates