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
Right now MarshalChan takes a chan interface{}. However this means that if you have a typed-chan you need to copy all the elements to a new in order to pass them to this function.
If MarshalChan took an interface{} (the way UnmarshalToChan does), then we could avoid this problem.
The text was updated successfully, but these errors were encountered:
Right now
MarshalChan
takes achan interface{}
. However this means that if you have a typed-chan you need to copy all the elements to a new in order to pass them to this function.If
MarshalChan
took aninterface{}
(the wayUnmarshalToChan
does), then we could avoid this problem.The text was updated successfully, but these errors were encountered: