Just an `Array` version of `List.eraseReps`. These functions are for now outside of scope for verification, so there's just a simple `example` in the tests.
2 lines
150 B
Text
2 lines
150 B
Text
example : Array.eraseReps #[1, 3, 2, 2, 2, 3, 5] = #[1, 3, 2, 3, 5] := rfl
|
|
example : List.eraseReps [1, 3, 2, 2, 2, 3, 5] = [1, 3, 2, 3, 5] := rfl
|