Show
Ignore:
Timestamp:
05/18/05 02:43:25 (4 years ago)
Author:
theorbtwo
svk:copy_cache_prev:
4945
Message:

More signatures, a few more haddocks.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/AST/Internals.hs

    r3328 r3372  
    12911291    deriving (Show, Eq, Ord, Typeable) 
    12921292 
     1293-- | A $/ object, the return of a rx match operation. 
    12931294data VMatch = MkMatch 
    12941295    { matchOk           :: !VBool   -- success? 
     
    13011302    deriving (Show, Eq, Ord, Typeable) 
    13021303 
     1304-- | An empty failed match 
     1305mkMatchFail :: VMatch 
    13031306mkMatchFail = MkMatch False 0 0 "" [] Map.empty 
     1307 
     1308-- | Makes a successful match 
     1309mkMatchOk :: Int -> Int -> VStr -> VList -> VHash -> VMatch 
    13041310mkMatchOk   = MkMatch True 
    13051311