Change stream

A Stream that only emits if the value is different.

Important

Example usage

[tokio::main]

async fn main() { let a = iter([1, 1, 2]);

a.changed().for_each(|a| async move {
    dbg!(a); //will only emit 1 and 2
}).await;

} ```