Linear AlgebraTypesBoolArrayMethodsrotateOn this pagerotate Method of BoolArray. rotate() -> BoolArray Returns a (counter-clockwise) rotated copy of the BoolArray. Example var a = BoolArray([[1,3],[2,4]])// prints// 1 2// 3 4a.rotate// prints// 2 4// 1 3