std.category
Implementation of the Category type
Types
#[implicit]
type Category cat = {
id : forall a . cat a a,
compose : forall a b c . cat b c -> cat a b -> cat a c
}
Values
Right-to-left composition. Alias for compose.
Left-to-right composition. Alias for compose, but with the arguments flipped.