ref4<T, A1, A2, A3, A4> method

Parser<T> ref4<T, A1, A2, A3, A4>(
  1. Parser<T> callback(
    1. A1,
    2. A2,
    3. A3,
    4. A4,
    ),
  2. A1 arg1,
  3. A2 arg2,
  4. A3 arg3,
  5. A4 arg4,
)
inherited

Reference to a production callback parametrized with four arguments arg1, arg2, arg3, and arg4.

Implementation

Parser<T> ref4<T, A1, A2, A3, A4>(Parser<T> Function(A1, A2, A3, A4) callback,
        A1 arg1, A2 arg2, A3 arg3, A4 arg4) =>
    reference.ref4<T, A1, A2, A3, A4>(callback, arg1, arg2, arg3, arg4);