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
Cross tech decl algebra:
// U — merge [{ entity: A }] U [{ entity: A, tech: '1' }] → → [{ entity: A }, { entity: A, tech: '1' }] // Because any tech can be not '1' in result [{ entity: A, tech: '1' }] U [{ entity: A, tech: '2' }] → → [{ entity: A, tech: '1' }, { entity: A, tech: '2' }] // / — subtract [{ entity: A, tech: 'specified' }] / [{ entity: A }] → [] [{ entity: A, layer: 'specified' }] / [{ entity: A }] → [] [{ entity: A }] / [{ entity: A, tech: 'specified' }] → ERROR [{ entity: A }] / [{ entity: A, layer: 'specified' }] → ERROR [{ entity: A, tech: 'specified' }] / [{ entity: A, layer: 'specified' }] → ERROR [{ entity: A, layer: 'specified' }] / [{ entity: A, tech: 'specified' }] → ERROR // П — intersect [{ entity: A }] П [{ entity: A, tech: 'specified' }] → [{ entity: A, tech: 'specified' }] [{ entity: A, tech: '1' }] П [{ entity: A, tech: '2' }] → [] [{ entity: A, tech: '1' }] П [{ entity: A, layer: 'l' }] → [{ entity: A, tech: '1', layer: 'l' }]
The text was updated successfully, but these errors were encountered:
subtract for [{ entity: A }] / [{ entity: A, tech: 'specified' }] → [{throw exception}]
[{ entity: A }] / [{ entity: A, tech: 'specified' }] → [{throw exception}]
Sorry, something went wrong.
belozer
No branches or pull requests
Cross tech decl algebra:
The text was updated successfully, but these errors were encountered: