hxt-9.3.1.4: A collection of tools for processing XML with Haskell.

Portabilitynon-portable
Stabilityexperimental
MaintainerUwe Schmidt (uwe\@fh-wedel.de)
Safe HaskellSafe-Inferred

Control.Arrow.ArrowNF

Description

Arrows for evaluation of normal form results

Synopsis

Documentation

strictA :: (Arrow a, NFData b) => a b bSource

complete evaluation of an arrow result using DeepSeq

this is sometimes useful for preventing space leaks, especially after reading and validation of a document, all DTD stuff is not longer in use and can be recycled by the GC.

class Arrow a => ArrowNF a whereSource

Methods

rnfA :: NFData c => a b c -> a b cSource

Instances

class (Arrow a, ArrowList a) => ArrowWNF a whereSource

partial evaluation of an arrow result using FlatSeq

There are tow arrows with force the partial evaluation. By convention the 2. should be less lazy than the 1.

These arrows are sometimes useful for preventing space leaks, especially when parsing complex data structures. In many cases the evaluated AST is more space efficient than the unevaluaded with a lot of closures.

Methods

rwnfA :: WNFData c => a b c -> a b cSource

rwnf2A :: WNFData c => a b c -> a b cSource