You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to iterate over the items in the first vector and print them out, and when getting to the ':c' fields I want to then start an inner iteration to print out the contents.
At the moment it is possible to get to every element in the structure with dotted notation. However, when I introduce an iterator using {% for n in res %} I then can not repeat this for the inner vector. Is this a lacking feature or am I not seeing the bigger picture? Thanks
The text was updated successfully, but these errors were encountered:
Thanks, as I thought. Accessing nested structures works fine for non-dotted (that is, non Datomic) keywords but doesn't work for dotted even if the 'double dot' escape I added is used. However, the double-dotted notation does work for non-nested access.
I will have a dig and see why this may be. If you have any pointers to specific files/functions much appreciated. Expect another pull request in due course.
Yeah, I thought your last pr would've addressed that, but maybe the for tag is working around it. Might be a good place to start. Thanks for spearheading this!
Hi
I have the following structure, passed to Selmer as variable 'res':
I want to iterate over the items in the first vector and print them out, and when getting to the ':c' fields I want to then start an inner iteration to print out the contents.
At the moment it is possible to get to every element in the structure with dotted notation. However, when I introduce an iterator using {% for n in res %} I then can not repeat this for the inner vector. Is this a lacking feature or am I not seeing the bigger picture? Thanks
The text was updated successfully, but these errors were encountered: