QuinaryRelation

abstract class QuinaryRelation<E : ExecutionContext> : PrimitiveWrapper<E>

Constructors

<init>

constructor(operator: String)

Parameters

Name Description
operator: String

Methods

computeAll

protected abstract fun Request<E>.computeAll(first: Term, second: Term, third: Term, fourth: Term, fifth: Term): Sequence<Response>

Template method aimed at computing the application of this relation to three Terms

Receiver

Name Description
Request<E>

Parameters

Name Description
first: Term
second: Term
third: Term
fourth: Term
fifth: Term

ReturnValue

Name Description
Sequence<Response>

uncheckedImplementation

protected fun uncheckedImplementation(request: Request<E>): Sequence<Response>

The function expressing the implementation of the primitive, without any check for application to correct signature

Parameters

Name Description
request: Request<E>

ReturnValue

Name Description
Sequence<Response>