-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Qute: implement a shortcut to access list element by index #11275
Labels
Milestone
Comments
mkouba
added a commit
to mkouba/quarkus
that referenced
this issue
Aug 7, 2020
- also implement a shortcut to access List elements by index - resolves quarkusio#11275
mkouba
added a commit
to mkouba/quarkus
that referenced
this issue
Aug 7, 2020
- also implement a shortcut to access List elements by index - resolves quarkusio#11275
mkouba
added a commit
to mkouba/quarkus
that referenced
this issue
Aug 7, 2020
- also implement a shortcut to access List elements by index - resolves quarkusio#11275
mkouba
added a commit
to mkouba/quarkus
that referenced
this issue
Aug 10, 2020
- also implement a shortcut to access List elements by index - resolves quarkusio#11275
mkouba
added a commit
to mkouba/quarkus
that referenced
this issue
Aug 10, 2020
- also implement a shortcut to access List elements by index - resolves quarkusio#11275
gsmet
pushed a commit
to gsmet/quarkus
that referenced
this issue
Aug 24, 2020
- also implement a shortcut to access List elements by index - resolves quarkusio#11275
gsmet
pushed a commit
to gsmet/quarkus
that referenced
this issue
Aug 24, 2020
- also implement a shortcut to access List elements by index - resolves quarkusio#11275
gsmet
pushed a commit
to gsmet/quarkus
that referenced
this issue
Aug 25, 2020
- also implement a shortcut to access List elements by index - resolves quarkusio#11275
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Support expressions like
{list.0}
and{list[1]}
.IMPL NOTE: This could be easily implemented by a template extension method. However, we should add
@TemplateExtention#matchRegex()
so that we could match integers because@TemplateExtention#matchName="*"
effectively disables all type-safe checks.The text was updated successfully, but these errors were encountered: