OutputM is imported by: ScopeModule.
module OutputM (module IxOutputM, F.HasOutput, outputTree, output, outputs) where import IxOutputM hiding (HasOutput(..)) import qualified MT as F import Tree outputTree :: F.HasOutput m F.Z o => Tree o -> m () output :: F.HasOutput m F.Z o => o -> m () outputs :: F.HasOutput m F.Z o => [o] -> m () outputTree = F.outputTree F.this output = F.output F.this outputs = F.outputs F.this
(HTML for this module was generated on 2006-08-12. About the conversion tool.)