remove indexed_set::Indexed trait.

This commit is contained in:
Felix S. Klock II 2016-05-25 15:41:57 +02:00
parent 58f1a4949d
commit a28771cc97

View File

@ -17,10 +17,6 @@ use std::ops::{Deref, DerefMut, Range};
use bitslice::{BitSlice, Word};
use bitslice::{bitwise, Union, Subtract};
pub trait Indexed {
type Idx: Idx;
}
pub trait Idx: 'static {
fn new(usize) -> Self;
fn idx(&self) -> usize;