Std.Http.Server.Route.joining
fn
joining: &Std.Http.Server.Route.Router -> &Std.Http.Server.Route.Router -> Std.Http.Server.Route.RouterThis is a callable function.
What it does
Two routers joined, the first tried before the second.
This is how a group of routes written elsewhere is mounted: a module
exports its own router, and the program joins it to the rest.
Read the signature
- The text after the name is the type checked by Pudu.
- Read arrows from left to right: inputs come first, and the final type is returned.
- & borrows a value for this call instead of moving or copying it.
