From f938714be165cd3a783ee76608298e4f32a1edb0 Mon Sep 17 00:00:00 2001 From: Mahmut Bulut Date: Tue, 30 Oct 2012 15:19:14 +0200 Subject: [PATCH] Remove trait of TimesIx --- src/libcore/iter.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs index f79a2e8f17b4..bb28d0ef4fba 100644 --- a/src/libcore/iter.rs +++ b/src/libcore/iter.rs @@ -34,10 +34,6 @@ pub trait Times { pure fn times(it: fn() -> bool); } -pub trait TimesIx{ - pure fn timesi(it: fn(uint) -> bool); -} - pub trait CopyableIter { pure fn filter_to_vec(pred: fn(a: A) -> bool) -> ~[A]; pure fn map_to_vec(op: fn(v: A) -> B) -> ~[B];