accept<T> abstract method

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

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

Implementation

T accept<T>(LatexVisitor<T> visitor);