pub struct Past<T>(_)
where
    T: Clone + Debug
;
Expand description

Moves timeseries by length items forward

It’s just a simple method-like wrapper for Window<T>

Parameters

Has a single parameter length: PeriodType

length should be > 0

Input type

Input type is any T: Copy + std::fmt::Debug

Output type

Output type is the same as input type

Examples

use yata::prelude::*;
use yata::methods::Past;

// Move of length=3
let mut past = Past::new(3, &1.0).unwrap();

past.next(&1.0);
past.next(&2.0);
past.next(&3.0);

assert_eq!(past.next(&4.0), 1.0);
assert_eq!(past.next(&5.0), 2.0);
assert_eq!(past.next(&6.0), 3.0);

Performance

O(1)

See also

Window<T>

Trait Implementations

Picks value at index position, starting from the newest value

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Method parameters

Input value type

Output value type

Static method for creating an instance of the method with given parameters and initial value (simply first input value)

Generates next output value based on the given input value

Creates an instance of the method with given parameters and initial value, wrapped by historical data holder

Creates an instance of the method with given parameters and initial value, wrapped by last produced value holder

Returns a name of the method

👎 Deprecated

Returns memory size of the method (size, align)

Iterates the Method over the given inputs slice and returns Vec of output values. Read more

Applies method to the sequence in-place.

Creates new Method instance and iterates it over the given inputs slice and returns Vec of output values. Read more

Creates new Method instance and applies it to the sequence.

Creates a function from the Method instance

Creates new function based on the method

Peeks the very last value, produced by method or indicator

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.