ps3
    Preparing search index...

    Interface MemeExpression

    An immutable data type representing an image meme expression, as defined in the PS3 handout.

    interface MemeExpression {
        equalValue(that: MemeExpression): boolean;
        toString(): string;
    }
    Index

    Methods

    • Parameters

      Returns boolean

      true if and only if this and that are structurally-equal MemeExpressions, as defined in the PS3 handout

    • Returns string

      a parsable representation of this expression, such that for all expr: MemeExpression, expr.equalValue(parse(expr.toString()))