Package org.jparsec

Class ReluctantBetweenParser<T>


  • @Deprecated
    final class ReluctantBetweenParser<T>
    extends Parser<T>
    Deprecated.
    A parser that first consumes the start and end, and then tries to consume the middle. Useful when the end terminator may be present in the body (e.g. (bodyWithParens ()())())
    • Field Detail

      • start

        private final Parser<?> start
        Deprecated.
      • between

        private final Parser<T> between
        Deprecated.
      • end

        private final Parser<?> end
        Deprecated.
    • Constructor Detail

      • ReluctantBetweenParser

        ReluctantBetweenParser​(Parser<?> start,
                               Parser<T> between,
                               Parser<?> end)
        Deprecated.