Std.Bool.and
1 declaration
fn
and: Bool -> Bool -> BoolThis is a callable function.
What it does
Whether both are true. Both are evaluated, unlike &&, which is why this
exists: it can be passed as a function where the operator cannot.
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.
