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
Some languages support "nested data types" (aka non-uniform, aka non-regular). What this basically means are recursive structures S<A> where the recursive references to S within its definition do not take the form S<A>, but instead take the form S<T<A>> for some non-trivial type constructor T.
Some languages support "nested data types" (aka non-uniform, aka non-regular). What this basically means are recursive structures
S<A>
where the recursive references to S within its definition do not take the formS<A>
, but instead take the formS<T<A>>
for some non-trivial type constructor T.So, as an example:
But right now rustc seems to infinite loop on the above. I need to investigate more.
The text was updated successfully, but these errors were encountered: