-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6cc60e0
commit f54027e
Showing
5 changed files
with
56 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,48 @@ | ||
# Data types | ||
|
||
### Tree sets | ||
## Tree sets | ||
|
||
## Tree types | ||
|
||
### Tree types | ||
This package offers a number of different types of tree, each | ||
optimised for a specific usage | ||
|
||
### Node types | ||
|
||
|
||
### Branch types | ||
|
||
|
||
```@docs | ||
LinkTree | ||
TreeSet | ||
BinaryTree | ||
NamedBinaryTree | ||
BinaryNode | ||
Node | ||
NamedTree | ||
PolytomousTree | ||
NamedPolytomousTree | ||
LinkTree | ||
LinkBranch | ||
``` | ||
|
||
## Node types | ||
|
||
```@docs | ||
LinkNode | ||
RootedTree | ||
ManyRootTree | ||
UnrootedTree | ||
TreeSet | ||
``` | ||
BinaryNode | ||
Node | ||
``` | ||
|
||
## Branch types | ||
|
||
```@docs | ||
LinkBranch | ||
Branch | ||
``` | ||
|
||
## Random tree generator types | ||
|
||
```@docs | ||
Ultrametric | ||
Nonultrametric | ||
``` | ||
|
||
## Iterator types | ||
|
||
```@docs | ||
NodeIterator | ||
NodeNameIterator | ||
BranchIterator | ||
BranchNameIterator | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters