1
0
forked from GitHub/gf-core

Minor cleanup

This commit is contained in:
John J. Camilleri
2021-02-03 09:44:15 +01:00
parent 153bffdad7
commit 132f693713
3 changed files with 14 additions and 17 deletions

View File

@@ -70,3 +70,9 @@ walking = LPGF {
})
]
}
-- | Helper for building concat trees
mkConcat :: [LinFun] -> LinFun
mkConcat [] = LFEmpty
mkConcat [x] = x
mkConcat xs = foldl1 LFConcat xs