regexdot-0.11.1.0: A polymorphic, POSIX, extended regex-engine.

Safe HaskellSafe-Inferred

RegExDot.Consumer

Contents

Description

AUTHOR
Dr. Alistair Ward
DESCRIPTION
  • Define the requirements & capabilities of a data-type which is designed to consume data.
  • This module also facilitates investigation of group-behaviour, by defining operations on either concatenations or alternations of Consumers.
  • This module is specifically for use in a regex-engine, in which the meta-data from which the regex is composed, are considered to consume input data, whilst concatenation & alternation of such elements, behave as a different types of groups of consumer.

Synopsis

Type-classes

class Consumer c whereSource

  • The interface, to which types, which have a data-requirement, may conform.
  • Regrettably, methods requiring reference to the type of the consumable, would require multi-parameter type-classes.
  • consumptionProfile defines the quantity-range of data which may be consumed, & any specific data-requirements.
  • starHeight measures the complexity of the Consumer.

Types

Type-synonyms

Functions

accumulateConsumptionProfiles :: Consumer c => [c] -> AccumulatedConsumptionProfilesSource

Get the ConsumptionProfile for the specified list of Consumers, then accumulate them.

aggregateConsumptionProfilesFromAlternatives :: Consumer c => [c] -> ConsumptionProfileSource

The aggregate of the specified alternation of ConsumptionProfiles.

aggregateConsumptionProfilesFromConcatenation :: Consumer c => [c] -> ConsumptionProfileSource

Get the ConsumptionProfiles for the specified list of Consumers, then find the net effect of concatenating them.

Query

getConsumptionBounds :: Consumer c => c -> ConsumptionBoundsSource

Convenience-function, to query the ConsumptionBounds of a Consumer.

getFewest :: Consumer c => c -> DataLengthSource

Determine the minimum acceptable quantity of data.

getHasSpecificRequirement :: Consumer c => c -> BoolSource

Determine whether the specified Consumer, has a specific requirement.