seqgen 0.3.3

Sequence generation library
Documentation
//! SeqGen is a sequence generation library. A library that generates sequences
//! based on given initial elements and a function that describes the transition
//! from the currently generated elements to next element to be generated in a lazy fashion
//! this means that the elements won't be generated unless explicitly requested or used.
//!
//! SeqGen does not only work with sequences of numbers, it works with any data type,
//! sequence elements can be strings, images, other sequences, etc...
//!
//! The sequences implements the Iterator trait so that they can be manipulated
//! using Rust iterator API.

#![deny(missing_docs)]
#![doc(
    html_logo_url = "https://raw.githubusercontent.com/crazyrat13/seqgen/main/assets/seqgen_logo.svg",
    html_favicon_url = "https://raw.githubusercontent.com/crazyrat13/seqgen/main/assets/seqgen_logo.svg"
)]

pub mod prelude;
pub mod sequence;
pub mod sequence_part;