#sequences #sequence

lukkid

lukkid is a library for Arithmetic Sequences

1 unstable release

0.1.0 Sep 21, 2020

#1073 in Math

MIT license

5KB
71 lines

A library for Arithmetic Sequences.

Example

  • creating your sequence using Sequence()::new(?,?,?);
  • sum all of list using zigma(<<put Sequence() Object here>> );
#[cfg(test)]
mod tests {
    use super::*;
    #[test]
    fn it_works() {
        let mut c = 0;
        for n in Sequence::new(2,10,2){
            println!("It is: {}", n);
            c += n;
        }
        assert_eq!(c, 20);
        let sl = zigma(Sequence::new(2,10,2), 0);
        assert_eq!(sl, 20);

        let fl = Sequence::new(2, 10, 2).fold(0,|acc,x|acc+x);
        assert_eq!(fl, 20);
    }
}

lib.rs:

Lukkid

A library for Arithmetic Sequences.

No runtime deps