summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorIngo Maier <ingo.maier@epfl.ch>2009-03-31 13:38:18 +0000
committerIngo Maier <ingo.maier@epfl.ch>2009-03-31 13:38:18 +0000
commita464ed4c3a8cddc200e38e8882026eb1ca5de7d9 (patch)
tree9accc54853444fe64eeabb39f7562dd447855f41 /src/library
parent3b25ed4bb51947b86822be323ffdf808151cfc8d (diff)
downloadscala-a464ed4c3a8cddc200e38e8882026eb1ca5de7d9.tar.gz
scala-a464ed4c3a8cddc200e38e8882026eb1ca5de7d9.tar.bz2
scala-a464ed4c3a8cddc200e38e8882026eb1ca5de7d9.zip
Removed all traces of ByNameFunction
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/ByNameFunction.scala26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/library/scala/ByNameFunction.scala b/src/library/scala/ByNameFunction.scala
deleted file mode 100644
index a4fb553a4a..0000000000
--- a/src/library/scala/ByNameFunction.scala
+++ /dev/null
@@ -1,26 +0,0 @@
-/* __ *\
-** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002-2009, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-\* */
-
-// $Id$
-
-
-package scala
-
-/** A partial function of type <code>PartialFunction[A, B]</code> is a
- * unary function where the domain does not include all values of type
- * <code>A</code>. The function <code>isDefinedAt</code> allows to
- * test dynamically, if a value is in the domain of the function.
- *
- * @author Martin Odersky
- * @version 1.0, 16/07/2003
- */
-trait ByNameFunction[-A, +B] extends AnyRef {
- def apply(x: => A): B
- override def toString() = "<function>"
-}
-