-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from adolgert/docs/read-through-text
Docs/read through text
- Loading branch information
Showing
6 changed files
with
93 additions
and
82 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
```@meta | ||
CurrentModule = Fleck | ||
``` | ||
|
||
# Algorithms | ||
|
||
Many samplers depend on data structures to allow efficient querying of clocks ordered with respect to some value, usually the firing time. These types and methods implement them for Fleck. | ||
|
||
```@docs | ||
CumSumPrefixSearch | ||
BinaryTreePrefixSearch | ||
KeyedKeepPrefixSearch | ||
KeyedRemovalPrefixSearch | ||
choose | ||
setindex! | ||
rand | ||
set_multiple! | ||
``` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
```@meta | ||
CurrentModule = Fleck | ||
``` | ||
|
||
# Interface | ||
|
||
These are methods which are defined for any samplers subtyping `<:SSA`, the abstract sampler type. | ||
|
||
## Use a Sampler | ||
|
||
```@docs | ||
enable! | ||
disable! | ||
next | ||
reset! | ||
``` | ||
|
||
## Query a Sampler | ||
|
||
```@docs | ||
getindex | ||
keys | ||
keytype | ||
length | ||
``` |
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