From 6e4c12589c58b41cf748b1913823df71cec7215f Mon Sep 17 00:00:00 2001 From: Matthew Hall Date: Mon, 13 Mar 2023 20:22:07 +1300 Subject: Documentation for Between --- src/parcom.cr | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'src/parcom.cr') diff --git a/src/parcom.cr b/src/parcom.cr index 24fb76c..0170fdc 100644 --- a/src/parcom.cr +++ b/src/parcom.cr @@ -81,24 +81,6 @@ module Parcom end end - class Between(T, V) < Parser(T, Array(V)) - @p : Map(T, {Array(V), Array(V)}, Array(V)) - - def initialize(i : Int, j : Int, p : Parser(T, V)) - lower = i < j ? i : j - upper = (i - j).abs - @p = (Exactly.new(lower, p) + AtMost.new(upper, p)).map do |tup| - tup[0] + tup[1] - end - end - - def parse(tokens : Tokens(T)) : Result(T, Array(V)) - @p.parse(tokens) - rescue ex : ParserFail - raise ParserFail.new("Between: #{ex.message}") - end - end - class FirstOf(T, V) < Parser(T, V) @p : Parser(T, V) -- cgit v1.2.1