view rust/hg-core/src/operations/mod.rs @ 51189:aba622c7dc7e

rust: add a utility function to merge ordered fallible iterators Adding a function merge_join_results_by, a version of itertools::merge_join_by that works on "fallible" iterators (iterators that can produce errors)
author Arseniy Alekseyev <aalekseyev@janestreet.com>
date Wed, 15 Nov 2023 18:41:33 +0000
parents 95ffa065204e
children ac3859a8b796
line wrap: on
line source

//! A distinction is made between operations and commands.
//! An operation is what can be done whereas a command is what is exposed by
//! the cli. A single command can use several operations to achieve its goal.

mod cat;
mod debugdata;
mod list_tracked_files;
pub use cat::{cat, CatOutput};
pub use debugdata::{debug_data, DebugDataKind};
pub use list_tracked_files::{list_rev_tracked_files, FilesForRev};