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

    Interface QuickVariable

    N3-specific term representing a quick variable (~var).

    interface QuickVariable {
        equals(other: unknown): boolean;
        termType: "QuickVariable";
        value: string;
    }
    Index

    Properties

    Methods

    Properties

    termType: "QuickVariable"

    Contains the constant "QuickVariable".

    value: string

    The name of the variable without leading ? (example: a).

    Methods

    • Parameters

      • other: unknown

        The term to compare with.

      Returns boolean

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