| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Types
Synopsis
- data NodeLabel = NodeLabel {
- nodeID :: !Text
- nodeLabels :: !Labels
- data Format
- data HaskellFormat
- data Exclusivity
- newtype Separator = Separator Text
- newtype Field = Field Int
- type Label = Text
- type Labels = Seq Label
- class WorkableTree a where
- makeWorkable :: a -> Tree NodeLabel
Documentation
Constructors
| NodeLabel | |
Fields
| |
Instances
| Eq NodeLabel Source # | |
| Ord NodeLabel Source # | |
| Read NodeLabel Source # | |
| Show NodeLabel Source # | |
| Generic NodeLabel Source # | |
| FromJSON NodeLabel Source # | |
| WorkableTree (Tree NodeLabel) Source # | |
| type Rep NodeLabel Source # | |
Defined in Types type Rep NodeLabel = D1 (MetaData "NodeLabel" "Types" "find-clumpiness-0.2.3.2-2gkO9401iPO824eplVKyTH" False) (C1 (MetaCons "NodeLabel" PrefixI True) (S1 (MetaSel (Just "nodeID") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text) :*: S1 (MetaSel (Just "nodeLabels") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Labels))) | |
data HaskellFormat Source #
Constructors
| BaseFormat | |
| TreeFormat | |
| DendrogramFormat |
Instances
| Read HaskellFormat Source # | |
Defined in Types Methods readsPrec :: Int -> ReadS HaskellFormat # readList :: ReadS [HaskellFormat] # | |
data Exclusivity Source #
Constructors
| Exclusive | |
| AllExclusive | |
| Majority |
Instances
| Read Exclusivity Source # | |
Defined in Types Methods readsPrec :: Int -> ReadS Exclusivity # readList :: ReadS [Exclusivity] # readPrec :: ReadPrec Exclusivity # readListPrec :: ReadPrec [Exclusivity] # | |
class WorkableTree a where Source #
Class of trees that can be converted to workable trees.
Methods
makeWorkable :: a -> Tree NodeLabel Source #
Instances
| WorkableTree (Tree (Seq Text)) Source # | |
| WorkableTree (Tree NodeLabel) Source # | |
| WorkableTree (Dendrogram (Seq Text)) Source # | |
Defined in Types Methods makeWorkable :: Dendrogram (Seq Text) -> Tree NodeLabel Source # | |