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 hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. 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).

  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. def partition[X](xys: Seq[Try[X]]): (Seq[Try[X]], Seq[Try[X]])

    Method to partition an method to combine elements of Try.

    Method to partition an method to combine elements of Try.

    X

    the underlying type

    xys

    a Seq of Try[X]

    returns

    a tuple of two Seqs of Try[X], the first one being successes, the second one being failures.

  17. def partition[X](xys: Iterator[Try[X]]): (Iterator[Try[X]], Iterator[Try[X]])

    Method to partition an method to combine elements of Try.

    Method to partition an method to combine elements of Try.

    X

    the underlying type

    xys

    an Iterator of Try[X]

    returns

    a tuple of two iterators of Try[X], the first one being successes, the second one being failures.

  18. def resource[C](resourceName: String)(implicit arg0: ClassTag[C]): Try[URL]

    Method to yield a URL for a given resourceForClass in the classpath for C.

    Method to yield a URL for a given resourceForClass in the classpath for C.

    C

    a class of the package containing the resourceForClass.

    resourceName

    the name of the resourceForClass.

    returns

    a Try[URL].

  19. def resourceForClass(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 (defaults to the caller's class).

    returns

    a Try[URL]

  20. def sequence[X](xos: Iterable[Option[X]]): Option[Seq[X]]

    Sequence method to combine elements of Try.

    Sequence method to combine elements of Try.

    X

    the underlying type

    xos

    an Iterable of Option[X]

    returns

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

  21. 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

  22. def sequence[X](xos: Iterator[Option[X]]): Option[Iterator[X]]

    Sequence method to combine elements of Try.

    Sequence method to combine elements of Try.

    X

    the underlying type

    xos

    an Iterator of Try[X]

    returns

    a Try of Iterator[X]

  23. 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]

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

Inherited from AnyRef

Inherited from Any

Ungrouped