rx_core_operator_end_with

Crates.iorx_core_operator_end_with
lib.rsrx_core_operator_end_with
version0.2.0
created_at2026-01-19 14:02:58.814148+00
updated_at2026-01-24 15:05:51.366102+00
descriptionend_with operator for rx_core
homepagehttps://github.com/AlexAegis/rx_bevy
repositoryhttps://github.com/AlexAegis/rx_bevy
max_upload_size
id2054659
size12,923
Sandor (AlexAegis)

documentation

https://github.com/AlexAegis/rx_bevy

README

operator_end_with

crates.io ci codecov license

Emit a value on completion.

See Also

Example

cargo run -p rx_core --example operator_end_with_example
let _subscription = (1..=5)
    .into_observable()
    .end_with(99)
    .subscribe(PrintObserver::new("end_with_operator"));

Output:

end_with_operator - next: 1
end_with_operator - next: 2
end_with_operator - next: 3
end_with_operator - next: 4
end_with_operator - next: 5
end_with_operator - next: 99
end_with_operator - completed
end_with_operator - unsubscribed
Commit count: 652

cargo fmt