Skip to content

Commit

Permalink
Std: use std::prelude
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanjermakov committed Feb 9, 2024
1 parent 36c8df3 commit aff9bc0
Show file tree
Hide file tree
Showing 10 changed files with 0 additions and 14 deletions.
1 change: 0 additions & 1 deletion src/std/bool.no
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use std::io::Display
use std::eq::Eq

pub type Bool {
True,
Expand Down
1 change: 0 additions & 1 deletion src/std/char.no
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use std::io::Display
use std::eq::Eq

pub type Char

Expand Down
1 change: 0 additions & 1 deletion src/std/float.no
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use std::eq::Eq
use std::io::Display

pub type Float
Expand Down
1 change: 0 additions & 1 deletion src/std/int.no
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use std::eq::Eq
use std::io::Display

pub type Int
Expand Down
2 changes: 0 additions & 2 deletions src/std/iter/intersperseIter.no
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
use std::iter::Iter

pub type IntersperseIter<T>(
iter: Iter<T>,
separator: T,
Expand Down
2 changes: 0 additions & 2 deletions src/std/iter/mapIter.no
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
use std::iter::Iter

pub type MapIter<T, U>(
iter: Iter<T>,
f: |T|: U
Expand Down
2 changes: 0 additions & 2 deletions src/std/iter/peekable.no
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
use std::iter::Iter

pub type PeekableIter<T>(
iter: Iter<T>,
peeked: Option<Option<T>>,
Expand Down
1 change: 0 additions & 1 deletion src/std/list.no
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use std::iter::{Iter, Iterable, Collector}
use std::io::Display

pub type List<T>
Expand Down
2 changes: 0 additions & 2 deletions src/std/ord.no
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
use std::eq::Eq

pub type Ordering {
Less,
Equal,
Expand Down
1 change: 0 additions & 1 deletion src/std/string.no
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use std::io::Display
use std::eq::Eq

pub type String

Expand Down

0 comments on commit aff9bc0

Please sign in to comment.