parser/src/GenericParser.purs

8 lines
590 B
Plaintext
Raw Normal View History

2024-01-19 00:59:47 +01:00
module GenericParser
( module GenericParser.Parser
, module GenericParser.DomainParserRFC1035
2024-01-19 00:59:47 +01:00
) where
import GenericParser.Parser (alphanum, char, current_position, digit, Error, failure, failureError, ident, identifier, Input, int, integer, item, letter, lower, many1, nat, natural, parse, Parser(..), Position, PositionString, Result, sat, space, string, success, symbol, token, try, tryMaybe, upper, Value)
import GenericParser.DomainParserRFC1035 (domain, DomainError(..), eof, label, ldh_str, let_dig, let_dig_hyp, max_domain_length, max_label_length, Size, subdomain, sub_eof)