-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Labels
domain: apiAnything related to the Arcon APIAnything related to the Arcon APIfeaturegood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed
Description
An Operator that both filters and maps.
Akin to Rust's own FilterMap but on a Stream rather than Iterator.
let strings = ["1", "two", "NaN", "four", "5"];
let mut app = Application::default()
.iterator(strings, |conf| {
conf.set_arcon_time(ArconTime::Process);
})
.filter_map(|s| s.parse().ok())
.build();Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
domain: apiAnything related to the Arcon APIAnything related to the Arcon APIfeaturegood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed