regexchar-0.9.0.15: A POSIX, extended regex-engine.

Safe HaskellNone
LanguageHaskell2010

RegExChar.ExtendedRegExChar

Contents

Description

AUTHOR
Dr. Alistair Ward
DESCRIPTION
An ExtendedRegEx, which has been specialised for Char, to create a tradition non-polymorphic regex.

Synopsis

Types

Type-synonyms

type InputData = InputData Char Source #

Abbreviation.

Functions

Operators

(+~) infix 4 Source #

Arguments

:: InputData

The input-data string.

-> RegExOpts ExtendedRegExChar

The match-options, parameterised by the regex-specification.

-> Result Char 

A veneer over the underlying polymorphic operator, +~.

(=~) infix 4 Source #

Arguments

:: InputData

The input-data string.

-> RegExOpts ExtendedRegExChar

The match-options, parameterised by the regex-specification.

-> Bool 

A veneer over the underlying polymorphic operator, =~.

(/~) infix 4 Source #

Arguments

:: InputData

The input-data string.

-> RegExOpts ExtendedRegExChar

The match-options, parameterised by the regex-specification.

-> Bool 

Pattern-mismatch operator.

Orphan instances