summaryrefslogtreecommitdiff
path: root/src/library/scala/Function1.scala
blob: 5841a6b993a98bfc9d4c463b83c46d98017c5ee1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2002-2004, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |                                         **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

package scala;

trait Function1[-T0, +R] extends AnyRef {
  def apply(v0: T0): R;
  override def toString() = "<function>";
}