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
{{ message }}
This repository has been archived by the owner on Feb 26, 2023. It is now read-only.
Allowing TreeParts inside generics can be confusing, the annotation
Tuple[bool, TreePart[bool]]
can lead to the sensation that the first element is static and the second dynamic. The solution would be to yield an error in this case and the user would just do this
TreePart[Tuple[bool, bool]]
The text was updated successfully, but these errors were encountered:
Allowing TreeParts inside generics can be confusing, the annotation
can lead to the sensation that the first element is static and the second dynamic. The solution would be to yield an error in this case and the user would just do this
The text was updated successfully, but these errors were encountered: