We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Let's try to add the following standard list operations to DynSem:
L -map-> V
L -map(default)-> V
(L1, L2) -zip-> [(a, b), ...]
(L1, L2) -zip(default)-> [(a, b), ...]
[(A, B), ...] -unzip-> (L1, L2)
[(A, B), ...] -unzip(default)-> (L1, L2)
A possible approach for implementation is desugaring their uses to simple rules. Another approach is to add interpreter support for the operations.
The text was updated successfully, but these errors were encountered:
We need more standard operations on lists such as
Sorry, something went wrong.
Index we have. Use map access notation. We indeed need concat. Updating OP.
Actually, concat is a different category of development. I've created #146 for it.
No branches or pull requests
Let's try to add the following standard list operations to DynSem:
L -map-> V
orL -map(default)-> V
(L1, L2) -zip-> [(a, b), ...]
or(L1, L2) -zip(default)-> [(a, b), ...]
[(A, B), ...] -unzip-> (L1, L2)
or[(A, B), ...] -unzip(default)-> (L1, L2)
A possible approach for implementation is desugaring their uses to simple rules. Another approach is to add interpreter support for the operations.
The text was updated successfully, but these errors were encountered: