public readonly property t as NDArray<T>:
a = NDArray<Int>.fromList([[1, 2, 3], [4, 5, 6]]) print(a.t) # [[1, 4], [2, 5], [3, 6]]