summaryrefslogtreecommitdiff
path: root/src/library/scalax/collection/OrderedIterable.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scalax/collection/OrderedIterable.scala')
-rwxr-xr-xsrc/library/scalax/collection/OrderedIterable.scala41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/library/scalax/collection/OrderedIterable.scala b/src/library/scalax/collection/OrderedIterable.scala
deleted file mode 100755
index 9a0b77e575..0000000000
--- a/src/library/scalax/collection/OrderedIterable.scala
+++ /dev/null
@@ -1,41 +0,0 @@
-/* __ *\
-** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2003-2009, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-\* */
-
-// $Id: Iterable.scala 15188 2008-05-24 15:01:02Z stepancheg $
-
-
-package scalax.collection
-
-import generic._
-import immutable.Nil
-import annotation.unchecked.uncheckedVariance
-
-/** An ordered collection is a collection with a fixed sequence of elements
- * which is the same in every run.
- *
- * for any two ordered collections c1 and c2.
- * Ordered collections support
- * - operations that form subsequences: take, takeWhile, drop, dropWhile,
- * - zip, unzip
- *
- * @author Martin Odersky
- * @version 2.8
- */
-trait OrderedIterable[+A] extends Iterable[A] with OrderedIterableTemplate[OrderedIterable, A @uncheckedVariance]
-
-/** Various utilities for instances of <a href="Iterable.html">Iterable</a>.
- *
- * @author Matthias Zenger
- * @author Martin Odersky
- * @version 2.8
- */
-object OrderedIterable extends IterableFactory[OrderedIterable] with EmptyIterableFactory[OrderedIterable] {
-
- val empty: OrderedIterable[Nothing] = Nil
-
-}