Packages

object FP

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FP
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def getURLForResource(resourceName: String, clazz: Class[_] = getClass): Try[URL]

    Method to yield a Try[URL] for a resource name and a given class.

    Method to yield a Try[URL] for a resource name and a given class.

    resourceName

    the name of the resource.

    clazz

    the class, relative to which, the resource can be found.

    returns

    a Try[URL]

  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def indexFound(w: String, i: Int): Try[Int]

    Method to determine if the String w was found at a valid index (i).

    Method to determine if the String w was found at a valid index (i).

    w

    the String (ignored unless there's an exception).

    i

    the index found.

    returns

    Success(i) if all well, else Failure(exception).

  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. def safeResource[R, A](resource: => R)(f: (R) => Try[A]): Try[A]

    This method is to Using.apply as flatMap is to Map.

    This method is to Using.apply as flatMap is to Map.

    R

    the resource type.

    A

    the underlying type of the result.

    resource

    a resource which is used by f and will be managed via Using.resource

    f

    a function of R => Try[A].

    returns

    a Try[A]

  18. def sequence[X](xys: Iterable[Try[X]]): Try[Seq[X]]

    Sequence method to combine elements of Try.

    Sequence method to combine elements of Try.

    X

    the underlying type

    xys

    an Iterable of Try[X]

    returns

    a Try of Seq[X] NOTE: that the output collection type will be Seq, regardless of the input type

  19. def sequence[X](xys: Iterator[Try[X]]): Try[Iterator[X]]

    Sequence method to combine elements of Try.

    Sequence method to combine elements of Try.

    X

    the underlying type

    xys

    an Iterator of Try[X]

    returns

    a Try of Iterator[X]

  20. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped