~alcinnz/haskell-stylist

ref: d27996ebcac2e0f1d2539634021452b5eb6966cf haskell-stylist/src/Data/CSS/StyleTree.hs -rw-r--r-- 402 bytes
d27996eb — Adrian Cochrane Parse @layer rules. 2 years ago
                                                                                
5f40f7e8 Adrian Cochrane
a73ae441 Adrian Cochrane
e3beef67 Adrian Cochrane
5f40f7e8 Adrian Cochrane
a73ae441 Adrian Cochrane
1
2
3
4
5
6
7
8
9
-- | Abstracts away tree traversals.
-- Mostly used by callers including (soon) XML Conduit Stylist,
-- but also used internally for generating counter text.
--
-- Backwards compatability module, this API has been moved out into "stylist-traits".
module Data.CSS.StyleTree(StyleTree(..), treeOrder, treeOrder',
    Path, treeMap, treeFlatten, preorder, preorder', postorder) where

import Stylist.Tree