Crates.io | async-rx |
lib.rs | async-rx |
version | 0.1.3 |
source | src |
created_at | 2023-07-04 18:40:23.039146 |
updated_at | 2023-08-01 13:22:54.294537 |
description | Utility functions for async reactive programming. |
homepage | |
repository | https://github.com/jplatte/async-rx |
max_upload_size | |
id | 908272 |
size | 36,462 |
Utility functions for async reactive programming.
This crate is intentionally very small as it only provides utilities that are not already found in futures-util. It is meant as a supplement, not a replacement for the existing well-known futures crates.
Currently provided functionality:
StreamExt::dedup
for deduplicating consecutive equal itemsStreamExt::dedup_by_key
for deduplicating consecutive items with an equal propertyStreamExt::batch_with
for flexible batching of the stream's items