Vladimir Krivopalov

Results 4 issues of Vladimir Krivopalov

## Description Previously, calls to msre_generate_target_string() from inside update_rule_target_ex() would accumulate memory allocations from ruleset memory pool that is never released. For reasonably large exclusion lists memory consumption grows exponentially...

2.x

Hi All, I didn't manage to find slides from Peter Gottschling's “How bad is Meta-Programming still today?" talk: https://www.youtube.com/watch?v=EkdfiHs78DY Is it possible to add them? Thanks!

The `stream::fallback()` combinator is very similar to `stream::or()` except that the combined stream ends when the first stream is exhausted even if the second one can still produce more items....

This makes the behavior consistent as otherwise combining two empty streams like `stream::empty::.race(stream::empty())` would return `Poll::Pending`. Fixes #40