Changeset 3333 for src/Pugs/Junc.hs

Show
Ignore:
Timestamp:
05/17/05 13:58:47 (4 years ago)
Author:
scook0
svk:copy_cache_prev:
4908
Message:

More function type declarations.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Junc.hs

    r3328 r3333  
    105105    = f args 
    106106    where 
     107    appSet :: ([ApplyArg], [ApplyArg]) -> Set Val -> Eval (Set Val) 
    107108    appSet x y = return . Set.fromList =<< appList x y 
     109    appList :: ([ApplyArg], [ApplyArg]) -> Set Val -> Eval [Val] 
    108110    appList (before, (ApplyArg name _ coll):after) vs = do 
    109111        mapM (\v -> juncApply f (before ++ ((ApplyArg name v coll):after))) $ Set.elems vs