MonoGraphSig

turbolift.extra_effects.MonoGraphSig
trait MonoGraphSig[K, V] extends Signature

Attributes

Graph
Supertypes
trait Signature
class Object
trait Matchable
class Any
Known subtypes
trait MonoGraph[K, V]

Members list

Concise view

Type members

Inherited types

type !@![A, U]

Abstract type that must be used in definitions of effect's operations.

Abstract type that must be used in definitions of effect's operations.

Becomes an alias of Computation (i.e. same as !!), once the signature is inherited from Effect.

Attributes

Inherited from:
Signature

Abstract type that must be used in definitions of effect's operations.

Abstract type that must be used in definitions of effect's operations.

Becomes an alias of this.type, once the signature is inherited from Effect.

Attributes

Inherited from:
Signature

Value members

Abstract methods

def empty(to: K): Unit !@! ThisEffect
def incoming(to: K, from: K): Unit !@! ThisEffect
def incomingConst(to: K, value: V): Unit !@! ThisEffect
def incomings(to: K, froms: IterableOnce[K]): Unit !@! ThisEffect
def outgoing(from: K, to: K): Unit !@! ThisEffect
def outgoingConst(from: K, value: V): Unit !@! ThisEffect
def outgoings(from: K, tos: IterableOnce[K]): Unit !@! ThisEffect