in scala
class Some

final case class Some[A1](x: A1)
extends Option[A1]
with ScalaObject
with CaseClass

Class Option[A] represents existing values of type A.
Author:
Martin Odersky
Version:
1.0, 16/07/2003

Field Summary
final val x: A1

Methods inherited from java/lang/Object-class
clone, eq, equals, finalize, getClass, hashCode, notify, notifyAll, synchronized, toString, wait, wait, wait

Methods inherited from scala/Any-class
!=, ==, asInstanceOf, isInstanceOf, match

Methods inherited from scala/CaseClass-class
caseArity, caseElement

Methods inherited from scala/Iterable-class
/:, :\, exists, find, foldLeft, foldRight, forall, sameElements

Methods inherited from scala/Option-class
elements, filter, flatMap, foreach, get, get, isEmpty, map, toList

Field Detail

x

  final val x: A1