[][src]Module preexplorer::sequence

Process indexed by 1, 2, 3, ... Most basic explorable structure: a sequence of values.

Remarks

With the prelude module, we can easily convert IntoIterators into Sequence for ease of use. The same can be achieved with the new method.

Examples

Quick plot.

use preexplorer::prelude::*;
(0..10).preexplore().plot("my_identifier").unwrap();

Compare Sequences.

use preexplorer::prelude::*;
pre::Sequences::new(vec![
    (0..10).preexplore(),
    (0..10).preexplore(),
    ])
    .plot("my_identifier").unwrap();

Re-exports

pub use crate::traits::Comparison;
pub use crate::traits::Configurable;
pub use crate::traits::Plotable;
pub use crate::traits::Saveable;
pub use comparison::Sequences;

Modules

comparison

Compare various Sequences. Comparison of sequences of values.

Structs

Sequence

Sequence of values.