listLF :: Eq a => Placer -> [(a, F b c)] -> F (a, b) (a, c) untaggedListLF :: Placer -> [F a b] -> F (Int, a) b
listLF placer fudgets
listLF
combines fudgets like listF
, but have extra an argument for
specifying layout.
placer :: Placer
fudgets :: [(a, F b c)]
tfs
,
listLF placer tfs = placerF placer (listF tfs)
Other combinators with layout information: compLF, listF, placerF.
Dynamic Layout.