Type alias Append<CTX, PROBLEM>Internal

Append<CTX, PROBLEM>: {
    kind: "Append";
    left: Bag<CTX, PROBLEM>;
    right: Bag<CTX, PROBLEM>;
}

When two bags exist on the same "level" in the parser composition we use this combinator.

Type Parameters

  • CTX

  • PROBLEM

Type declaration

  • kind: "Append"
  • left: Bag<CTX, PROBLEM>
  • right: Bag<CTX, PROBLEM>