This was previously discussed in #469, but it seems that was mainly about documenting an idiomatic way to rewrite an example using try_fold(). Maybe there was already a deprecation that has since been reverted? It's also mentioned in #223 as something that will be deprecated and removed.
The ControlFlow enum, which seems to have the most apt semantics, has been stable since Rust 1.55. FoldWhile does have an into_inner() method that doesn't have a direct analog on ControlFlow yet, but this seems a minor ergonomics deficiency.
This was previously discussed in #469, but it seems that was mainly about documenting an idiomatic way to rewrite an example using
try_fold(). Maybe there was already a deprecation that has since been reverted? It's also mentioned in #223 as something that will be deprecated and removed.The
ControlFlowenum, which seems to have the most apt semantics, has been stable since Rust 1.55.FoldWhiledoes have aninto_inner()method that doesn't have a direct analog onControlFlowyet, but this seems a minor ergonomics deficiency.