| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Types
Documentation
Constructors
| NodeLabel | |
Fields
| |
Instances
| Eq NodeLabel # | |
| Ord NodeLabel # | |
| Read NodeLabel # | |
| Show NodeLabel # | |
| Generic NodeLabel # | |
| FromJSON NodeLabel # | |
| WorkableTree (Tree NodeLabel) # | |
| type Rep NodeLabel # | |
Defined in Types type Rep NodeLabel = D1 (MetaData "NodeLabel" "Types" "find-clumpiness-0.2.3.1-1HBKsRIKt7ClcmwbHy5i5" 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 #
Constructors
| BaseFormat | |
| TreeFormat | |
| DendrogramFormat |
Instances
| Read HaskellFormat # | |
Defined in Types Methods readsPrec :: Int -> ReadS HaskellFormat # readList :: ReadS [HaskellFormat] # | |
data Exclusivity #
Constructors
| Exclusive | |
| AllExclusive | |
| Majority |
Instances
| Read Exclusivity # | |
Defined in Types Methods readsPrec :: Int -> ReadS Exclusivity # readList :: ReadS [Exclusivity] # readPrec :: ReadPrec Exclusivity # readListPrec :: ReadPrec [Exclusivity] # | |
class WorkableTree a where #
Class of trees that can be converted to workable trees.
Minimal complete definition
Methods
makeWorkable :: a -> Tree NodeLabel #
Instances
| WorkableTree (Tree (Seq Text)) # | |
| WorkableTree (Tree NodeLabel) # | |
| WorkableTree (Dendrogram (Seq Text)) # | |
Defined in Types Methods makeWorkable :: Dendrogram (Seq Text) -> Tree NodeLabel # | |