summaryrefslogtreecommitdiff
path: root/sources/scala/PartialFunction.scala
blob: 90a731ebaf7a20424f97b65711d9071098052624 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// DO NOT EDIT. Automatically generated file!

/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2002, LAMP/EPFL                  **
**  __\ \/ /__/ __ |/ /__/ __ |                                         **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

package scala {
  class PartialFunction[A, B] {

    def apply(x: A): B;

    def isDefinedAt(x: A): scala.Boolean;

  }

}