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
To make sure the type conversion object is a category, we have to make sure the type conversion arrow is transitive. For example, if we have a pydantic.BaseModel → str arrow and a str → bytes arrow, then the system should trivially support pydantic.BaseModel → bytes cast, without us explicitly writing it out. Implementation is based on function composition.
The text was updated successfully, but these errors were encountered:
To make sure the type conversion object is a category, we have to make sure the type conversion arrow is transitive. For example, if we have a
pydantic.BaseModel → str
arrow and astr → bytes
arrow, then the system should trivially supportpydantic.BaseModel → bytes
cast, without us explicitly writing it out. Implementation is based on function composition.The text was updated successfully, but these errors were encountered: