ยค listLF, untaggedListLF

Types

listLF :: Eq a => Placer -> [(a, F b c)] -> F (a, b) (a, c)
untaggedListLF :: Placer -> [F a b] -> F (Int, a) b

Synopsis

listLF placer fudgets

Description

listLF combines fudgets like listF, but have extra an argument for specifying layout.

Arguments

placer :: Placer
A placer
fudgets :: [(a, F b c)]
a list of (tagged) fudgets.

Equalities

For non-empty lists of tagged fudgets tfs,
  listLF placer tfs = placerF placer (listF tfs)

See Also

Placers: horizontalP et al, matrixP, tableP.

Other combinators with layout information: compLF, listF, placerF.

Dynamic Layout.