4 lines
185 B
Text
4 lines
185 B
Text
module
|
||
example [BEq α] (xs ys : Vector α n) : (xs.toList == ys.toList) = (xs == ys) := by grind
|
||
|
||
example [LT α] {xs ys : Vector α n} : xs.toList < ys.toList ↔ xs < ys := by grind
|