ExCellerate.Functions.General.And (excellerate v0.4.0)

Copy Markdown View Source

Returns true if all arguments are truthy, false otherwise.

Accepts any number of arguments.

Examples

and(true, true, true)   true
and(true, false, true)  false
and(score > 50, age >= 18)  true (when both conditions hold)