¤ hSplitF, vSplitF

Containers

Types

hSplitF :: F a b -> F c d -> F (Either a c) (Either b d)
vSplitF :: F a b -> F c d -> F (Either a c) (Either b d)

Synopsis

hSplitF fud1 fud2

Description

These combinator creates horizontal/vertical compositions of fudgets where the amount of space assigned to the parts is controlled by the user.

Input

Propagated to fud1 or fud2 as in a tagged parallel composition

Output

the tagged output from fud1 and fud2 as in tagged parallel composition

Arguments

fud1 :: F a b
The first fudget
fud2 :: F c d
The second fudget

Equalities

  hSplitF = hSplitF' aCenter
  vSplitF = vSplitF' aCenter

See Also

hSplitF'