ยค labAboveF, labBelowF, et al

Decoration

Types

labAboveF :: Graphic p => p -> F c d -> F c d
labBelowF :: Graphic p => p -> F c d -> F c d
labLeftOfF :: Graphic p => p -> F c d -> F c d
labRightOfF :: Graphic p => p -> F c d -> F c d

Synopsis

labAboveF label fudget

Description

These combinators are used to attach a label to a fudget in a simple way. The names suggest where the label is placed relative to the fudget.

Arguments

label :: p
The label. The label can be a value of any type that is an instance of the Graphic class, e.g., a string.

fudget :: F c d
The fudget to which the label is attached.

Example

 "x=" `labLeftOfF` intF

See Also

tieLabelF.