Std.Db.Query.then
1 declaration
fn
then: &Std.Db.Query.Statement -> &Std.Db.Query.Statement -> Std.Db.Query.StatementThis is a callable function.
What it does
Two statements one after the other, with the second's placeholders
renumbered to follow the first's.
Two statements one after the other.
Nothing is renumbered and nothing is scanned: the placeholders are parts,
so putting one statement after another is putting its parts after the
other's, and the numbers are written when the text is.
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.
