Trait/Object

spire.algebra.partial

RightPartialAction

Related Docs: object RightPartialAction | package partial

Permalink

trait RightPartialAction[P, G] extends Any

A right partial action of a semigroupoid G on P is the implementation of a method partialActr(p, g), or p <|+|? g returning Opt[P], such that:

1. for all g, h in G, p in P such that g |+|? h and p <|+|? g are defined,

(p <|+|? (g |+|? h).get).get === ((p <|+|? g).get |+|? h).get, and all operations are defined.

In addition, if G is a partial monoid, the following relation holds:

2. for all g in G and p in P such that p <|+|? g is defined:

(p <|+|? g.leftId).get === p, the operation <|+|? being defined.

Linear Supertypes
Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RightPartialAction
  2. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def getClass(): Class[_]

    Permalink
    Definition Classes
    Any
  2. abstract def partialActr(p: P, g: G): Opt[P]

    Permalink

Concrete Value Members

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

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

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

    Permalink
    Definition Classes
    Any
  4. def actrIsDefined(p: P, g: G): Boolean

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  7. def hashCode(): Int

    Permalink
    Definition Classes
    Any
  8. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  9. def toString(): String

    Permalink
    Definition Classes
    Any

Inherited from Any

Ungrouped