The following syntax does not translate over from Groovy (where it does work)
Groovy:
{list user.keyStore?.keys}
...
{/list}
Rythm:
@for(user.keyStore?.keys) {
...
}
Error:
Syntax error on token "?", delete this token
What is the correct method for null safe checks inside of a loop?