Class

geotrellis.engine.logic.applicative

Fmap

Related Doc: package applicative

Permalink

case class Fmap[A, Z](a: Op[A])(f: (A) ⇒ Z)(implicit evidence$1: Manifest[Z]) extends Op1[A, Z] with Product with Serializable

This corresponds to Haskell's "fmap" on Functor.

Annotations
@deprecated
Deprecated

(Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

Linear Supertypes
Op1[A, Z], Operation[Z], Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Fmap
  2. Op1
  3. Operation
  4. Serializable
  5. Serializable
  6. Product
  7. Equals
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Fmap(a: Op[A])(f: (A) ⇒ Z)(implicit arg0: Manifest[Z])

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def _run(): StepOutput[Z]

    Permalink
    Definition Classes
    Op1Operation
  5. val a: Op[A]

    Permalink
  6. def andThen[U](f: (Z) ⇒ Op[U]): Operation[U]

    Permalink
    Definition Classes
    Operation
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def canEqual(other: Any): Boolean

    Permalink
    Definition Classes
    Op1 → Equals
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. val debug: Boolean

    Permalink
    Definition Classes
    Operation
  11. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  12. def filter(f: (Z) ⇒ Boolean): Operation[Z]

    Permalink
    Definition Classes
    Operation
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def flatMap[U](f: (Z) ⇒ Operation[U]): Operation[U]

    Permalink

    Create a new operation with a function that takes the result of this operation and returns a new operation.

    Create a new operation with a function that takes the result of this operation and returns a new operation.

    Definition Classes
    Operation
  15. def flatten[B](implicit f: (Z) ⇒ Op[B]): Operation[B]

    Permalink
    Definition Classes
    Operation
  16. def foreach[U](f: (Z) ⇒ U): Unit

    Permalink

    Create an operation that applies the function f to the result of this operation, but returns nothing.

    Create an operation that applies the function f to the result of this operation, but returns nothing.

    Definition Classes
    Operation
  17. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  18. def into[U](f: (Operation[Z]) ⇒ U): U

    Permalink

    Call the given function with this operation as its argument.

    Call the given function with this operation as its argument.

    This is primarily useful for code readability.

    Definition Classes
    Operation
    See also

    http://debasishg.blogspot.com/2009/09/thrush-combinator-in-scala.html

  19. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  20. def map[U](f: (Z) ⇒ U): Operation[U]

    Permalink

    Create a new operation that returns the result of the provided function that takes this operation's result as its argument.

    Create a new operation that returns the result of the provided function that takes this operation's result as its argument.

    Definition Classes
    Operation
  21. val myNextSteps: PartialFunction[Any, StepOutput[Z]]

    Permalink
    Definition Classes
    Op1
  22. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  23. val nextSteps: PartialFunction[Any, StepOutput[Z]]

    Permalink
    Definition Classes
    Op1Operation
  24. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. def opId: String

    Permalink
    Definition Classes
    Operation
  27. def prettyString: String

    Permalink
    Definition Classes
    Operation
  28. def processNextSteps(args: Args): StepOutput[Z]

    Permalink
    Definition Classes
    Operation
  29. def productArity: Int

    Permalink
    Definition Classes
    Op1 → Product
  30. def productElement(n: Int): Any

    Permalink
    Definition Classes
    Op1 → Product
  31. def run(): StepOutput[Z]

    Permalink

    Execute this operation and return the result.

    Execute this operation and return the result.

    Definition Classes
    Operation
  32. def runAsync(args: Args): StepOutput[Z]

    Permalink
    Definition Classes
    Operation
  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  34. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. def withFilter(f: (Z) ⇒ Boolean): Operation[Z]

    Permalink
    Definition Classes
    Operation
  38. def withName(n: String): Operation[Z]

    Permalink
    Definition Classes
    Operation
  39. def withResult[U](f: (Z) ⇒ Operation[U]): Operation[U]

    Permalink

    Create a new operation with a function that takes the result of this operation and returns a new operation.

    Create a new operation with a function that takes the result of this operation and returns a new operation.

    Same as flatMap.

    Definition Classes
    Operation

Inherited from Op1[A, Z]

Inherited from Operation[Z]

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped