Skip to content

Commit

Permalink
core::iter: break long lines
Browse files Browse the repository at this point in the history
  • Loading branch information
bluss committed Apr 18, 2016
1 parent 84654fa commit 085fdda
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/libcore/iter/iterator.rs
Expand Up @@ -17,9 +17,12 @@ use ops::{Add, FnMut, Mul};
use option::Option::{self, Some, None};
use marker::Sized;

use super::{Chain, Cycle, Cloned, Enumerate, Filter, FilterMap, FlatMap, Fuse, Inspect, Map, Peekable, Scan, Skip, SkipWhile, Take, TakeWhile, Rev, Zip};
use super::{Chain, Cycle, Cloned, Enumerate, Filter, FilterMap, FlatMap, Fuse,
Inspect, Map, Peekable, Scan, Skip, SkipWhile, Take, TakeWhile, Rev,
Zip};
use super::ChainState;
use super::{DoubleEndedIterator, ExactSizeIterator, Extend, FromIterator, IntoIterator};
use super::{DoubleEndedIterator, ExactSizeIterator, Extend, FromIterator,
IntoIterator};

fn _assert_is_object_safe(_: &Iterator<Item=()>) {}

Expand Down

0 comments on commit 085fdda

Please sign in to comment.