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 Oct 25, 2024. It is now read-only.
There should be a distinct difference between stack memory when using result values and exceptions. Exceptions utilize no additional stack memory because no information about the air type is stored in any frame. With result types each frame, that ops into using result types or use a function that uses result types ,will need to have at least some memory allocated to storing the air type or discriminant.
The text was updated successfully, but these errors were encountered:
Note that there is going to be a crossing point because exceptions do utilize stack memory to run the unwinding algorithms. This could vary depending on the complexity of the object from, but my guess is that it's fixed in size.
There should be a distinct difference between stack memory when using result values and exceptions. Exceptions utilize no additional stack memory because no information about the air type is stored in any frame. With result types each frame, that ops into using result types or use a function that uses result types ,will need to have at least some memory allocated to storing the air type or discriminant.
The text was updated successfully, but these errors were encountered: