Changeset 17047 for src/Pugs/AST/Pad.hs
- Timestamp:
- 07/14/07 04:45:22 (17 months ago)
- Files:
-
- 1 modified
-
src/Pugs/AST/Pad.hs (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Pugs/AST/Pad.hs
r16414 r17047 1 1 {-# OPTIONS_GHC -fglasgow-exts -fparr #-} 2 2 module Pugs.AST.Pad ( 3 mkPad, diffPads,unionPads, padKeys, filterPad, adjustPad, mergePadEntry,3 mkPad, unionPads, padKeys, filterPad, adjustPad, mergePadEntry, 4 4 mergeLexPads, readMPad, writeMPad, appendMPad, modifyMPad, newMPad 5 5 ) where … … 51 51 return $ MkMPad (addressOf tvar) tvar 52 52 53 {- 53 54 {-| 54 55 Return the difference between two 'Pad's. … … 62 63 diffPadEntry x y | x == y = Nothing 63 64 | otherwise = Just x 65 -} 64 66 65 67 {-|
