support iteration on lists and tuples #43
Labels
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: M-Labs/nac3#43
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
currently fails with:
support iteration on liststo support iteration on lists and tuplesWith a tuple, the error is
We need to decide whether to support it or not on tuples, which can be heterogenous so assigning a type to
x
isn't always possible.tuple requires the loop unfolding feature, which requires the pseudo comment support.
Implemented for list.
see #63 for iteration over tuples.