ยค labAboveF, labBelowF, et al
Decoration
Types
labAboveF :: Graphic g => g -> F c d -> F c d
labBelowF :: Graphic g => g -> F c d -> F c d
labLeftOfF :: Graphic g => g -> F c d -> F c d
labRightOfF :: Graphic g => g -> 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 :: g 
    - 	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.