I cannot find an operator "RO" so that given a list, say {a,b,c}, RO[&&,{a,b,c}] produces a && b && c
Asked
Active
Viewed 68 times
1
I cannot find an operator "RO" so that given a list, say {a,b,c}, RO[&&,{a,b,c}] produces a && b && c
Fold. – Szabolcs Apr 01 '19 at 18:27And @@ {a,b,c}. – Szabolcs Apr 01 '19 at 18:28Apply[And, {a, b, c}]– Bob Hanlon Apr 01 '19 at 22:12