chore(library/data/bitvec): remove leftover code

This commit is contained in:
Joe Hendrix 2017-01-05 23:55:34 -08:00 committed by Leonardo de Moura
parent 985c3697b9
commit 5bc5013f16

View file

@ -145,13 +145,6 @@ section comparison
end comparison
/-
-- Create bitvecor from nat
def from_nat {n} : → bitvec n
| 0 := 0
| (nat.succ x) := from_nat x + 1
-/
section conversion
variable {α : Type}