ref2<T, A1, A2> method

Parser<T> ref2<T, A1, A2>(
  1. Parser<T> callback(
    1. A1,
    2. A2
    ),
  2. A1 arg1,
  3. A2 arg2
)
inherited

Reference to a production callback parametrized with two arguments arg1 and arg2.

Implementation

Parser<T> ref2<T, A1, A2>(
        Parser<T> Function(A1, A2) callback, A1 arg1, A2 arg2) =>
    reference.ref2<T, A1, A2>(callback, arg1, arg2);