accept<T> method

  1. @override
T accept<T>(
  1. LatexVisitor<T> visitor
)
override

Double-dispatch: Dispatches the visitor to the corresponding visit method

Implementation

@override
T accept<T>(LatexVisitor<T> visitor) => visitor.visitBoxed(this);