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
For completeness, the call and callwith functions should support the Values abstraction, for unpacking multiple and/or named return values into function arguments. The function composition utilities already support this.
Instead of *a and **kw, if given exactly one positional argument x, and type(x) is Values, then unpack it, thus populating *a and **kw.
The text was updated successfully, but these errors were encountered:
For completeness, the
call
andcallwith
functions should support theValues
abstraction, for unpacking multiple and/or named return values into function arguments. The function composition utilities already support this.Instead of
*a
and**kw
, if given exactly one positional argumentx
, andtype(x) is Values
, then unpack it, thus populating*a
and**kw
.The text was updated successfully, but these errors were encountered: