abstract class Unpickled[+T] extends AnyRef
A base class representing unpickler result. It has two subclasses:
UnpickleSuccess
for successful unpicklings and UnpickleFailure
for failures,
where a value of the given type T
could not be unpickled from input.
- T
the type of unpickled values in case of success.
- Source
- Pickler.scala
- Alphabetic
- By Inheritance
- Unpickled
- AnyRef
- Any
- by TildeDecorator
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Instance Constructors
- new Unpickled()
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
- def ->[B](y: B): (Unpickled[T], B)
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- def ensuring(cond: (Unpickled[T]) ⇒ Boolean, msg: ⇒ Any): Unpickled[T]
- def ensuring(cond: (Unpickled[T]) ⇒ Boolean): Unpickled[T]
- def ensuring(cond: Boolean, msg: ⇒ Any): Unpickled[T]
- def ensuring(cond: Boolean): Unpickled[T]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
flatMap[U](f: (T) ⇒ Unpickled[U]): Unpickled[U]
Transforms success values to successes or failures using given function, leaves failures alone.
Transforms success values to successes or failures using given function, leaves failures alone.
- f
the function to apply.
- def formatted(fmtstr: String): String
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
map[U](f: (T) ⇒ U): Unpickled[U]
Transforms success values to success values using given function, leaves failures alone
Transforms success values to success values using given function, leaves failures alone
- f
the function to apply.
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
orElse[U >: T](alt: ⇒ Unpickled[U]): Unpickled[U]
Tries alternate expression if current result is a failure
Tries alternate expression if current result is a failure
- alt
the alternate expression to be tried in case of failure
-
def
requireSuccess: UnpickleSuccess[T]
Transforms failures into thrown
MalformedInput
exceptions.Transforms failures into thrown
MalformedInput
exceptions.- Exceptions thrown
MalformedInput
if current result is a failure
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
~[T](y: T): ~[Unpickled[T], T]
Infix method that forms a
~
-pair.Infix method that forms a
~
-pair.- Implicit
- This member is added by an implicit conversion from Unpickled[T] to TildeDecorator[Unpickled[T]] performed by method TildeDecorator in scala.tools.nsc.interactive.Pickler.
- Definition Classes
- TildeDecorator
- def →[B](y: B): (Unpickled[T], B)
The Scala compiler and reflection APIs.