~alcinnz/haskell-stylist

ref: 4bdb4befad2b36c500e4f30d584b5415c00ef7c6 haskell-stylist/src/Data/CSS/StyleTree.hs -rw-r--r-- 402 bytes
4bdb4bef — Adrian Cochrane Fix @layer to play nicely with the conditional at-rules. 2 years ago
                                                                                
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