Check if two shapes can be broadcast together (NumPy-style)
type CanAdd = CanBroadcast<[1, 3], [2, 1]> // truetype CannotAdd = CanBroadcast<[2, 3], [4, 5]> // false Copy
type CanAdd = CanBroadcast<[1, 3], [2, 1]> // truetype CannotAdd = CanBroadcast<[2, 3], [4, 5]> // false
Check if two shapes can be broadcast together (NumPy-style)