You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
64: Make exp_any return the earliest result r=matthiasbeyer a=souze
Previously, exp_any would return the match with the lowest index in the list
So this
`exp_any(&vec![ReadUntil::String("hello"), ReadUntil::String("hell")]`
With the input from the process as "hello", will sometimes return "hell", and sometimes "hello", depending on how much the readbuffer happened to have collected.
Co-authored-by: Erik Karlsson <[email protected]>
0 commit comments