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
The "default" variant in which Rust handles the dropping is made in a recursive manner, thus it will yield an overflow stack abort. The "custom" Drop::drop implementation currently elides this overflow by implementing an "iterative drop", which unfortunately blows the efficiency by a factor of 10...
At the moment the iterative drop is disabled by default, thus the default recursive behaviour is used... (One should not create lists longer than 20k pairs.)
The text was updated successfully, but these errors were encountered:
The "default" variant in which Rust handles the dropping is made in a recursive manner, thus it will yield an
overflow stack
abort. The "custom"Drop::drop
implementation currently elides this overflow by implementing an "iterative drop", which unfortunately blows the efficiency by a factor of 10...At the moment the iterative drop is disabled by default, thus the default recursive behaviour is used... (One should not create lists longer than 20k pairs.)
The text was updated successfully, but these errors were encountered: