@faubulous/mentor-rdf-serializers
    Preparing search index...

    Interface Formula

    N3-specific term representing a formula (graph literal).

    interface Formula {
        equals(other: unknown): boolean;
        quads: (Rdf12Quad | Quad)[];
        termType: "Formula";
        value: string;
    }
    Index

    Properties

    Methods

    Properties

    quads: (Rdf12Quad | Quad)[]

    Quads contained within this formula.

    termType: "Formula"

    Contains the constant "Formula".

    value: string

    The quads contained within this formula.

    Methods

    • Parameters

      • other: unknown

        The term to compare with.

      Returns boolean

      True if and only if other has termType "Formula" and the same value.