proc `and`(a, b: Tensor[bool]): Tensor[bool] {.noinit, ...raises: [ValueError], tags: [], forbids: [].}
Tensor element-wise boolean and.
Returns:
proc `not`(a: Tensor[bool]): Tensor[bool] {.noinit, ...raises: [], tags: [], forbids: [].}
proc `or`(a, b: Tensor[bool]): Tensor[bool] {.noinit, ...raises: [ValueError], tags: [], forbids: [].}
Tensor element-wise boolean or.
proc `xor`(a, b: Tensor[bool]): Tensor[bool] {.noinit, ...raises: [ValueError], tags: [], forbids: [].}
Tensor element-wise boolean xor.