¤ labAboveF, labBelowF, et al
Types
labAboveF :: String -> F a b -> F a b
labBelowF :: String -> F a b -> F a b
labLeftOfF :: String -> F a b -> F a b
labRightOfF :: String -> F a b -> F a b
Synopsis
labAboveF text 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
text :: String
- The label.
fudget :: F a b
- The fudget to which the label is attached.
Example
"x=" `labLeftOfF` intF
See Also
tieLabelF.