Package org.jparsec

Class ReluctantBetweenParser<T>

java.lang.Object
org.jparsec.Parser<T>
org.jparsec.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 Details

    • start

      private final Parser<?> start
      Deprecated.
    • between

      private final Parser<T> between
      Deprecated.
    • end

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

    • ReluctantBetweenParser

      ReluctantBetweenParser(Parser<?> start, Parser<T> between, Parser<?> end)
      Deprecated.
  • Method Details