Overload to call And with 3 or more operands. We need the following somewhat convoluted overload set to disambiguate with the overload that takes the `broadcast_dimensions` optional param.
| 1641 | // convoluted overload set to disambiguate with the overload that takes the |
| 1642 | // `broadcast_dimensions` optional param. |
| 1643 | inline XlaOp And(XlaOp op1, XlaOp op2, XlaOp op3) { |
| 1644 | return And(op1, And(op2, op3)); |
| 1645 | } |
| 1646 | template <typename... XlaOpTs> |
| 1647 | XlaOp And(XlaOp op1, XlaOp op2, XlaOp op3, const XlaOpTs&... operands) { |
| 1648 | return And(op1, And(op2, And(op3, operands...))); |
no outgoing calls