Results 5 issues of Alexander Hill

The `llvm-cov` plugin needs to be installed as a cargo plugin (and at least on my system, had to run it manually once to respond to a user input prompt)...

A common pattern in some codebases is to filter streams by the keys of a map: ``` private Stream filterBasedOnMapKeys(Map map, Stream stream) { return stream .filter(map::containsKey) .map(value -> someMethod(map.get(value)));...

[StreamEx](https://github.com/amaembo/streamex) is a library that adds utility methods to streams in Java. The EntryStream class is particularly useful for using Maps with streams. For example: ``` EntryStream.of(map) .filterKeys(key -> anotherMap.containsKey(key))...

### Changelog Add `id` fields to the `Schema` and `Channel` structs. ### Docs None ### Description The Channel ID is needed to be able to distinguish two channels with the...

## What does this PR do Adds lightweight wrappers around setting and getting the scheduler and schedule parameters. Related: https://github.com/nix-rust/nix/issues/1260 ## Checklist: - [x] I have read `CONTRIBUTING.md` - [x]...