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
Scheme allows for the returning of multiple values for an expression, and thus we must support that. However, the vast majority of the time only one value will be returned. Therefore, we can optimize the Eval and Resumable traits to return a small vec of size 1:
Scheme allows for the returning of multiple values for an expression, and thus we must support that. However, the vast majority of the time only one value will be returned. Therefore, we can optimize the
Eval
andResumable
traits to return a small vec of size 1:The text was updated successfully, but these errors were encountered: