view rust/hg-core/src/dirstate_tree.rs @ 47282:ce41ee53263f

dirstate-tree: Extract into a method sorting children of a given node A later changset will use this in another place. This is an associated function (that Python would call static method) instead of a free function so it doesn?t need to be imported separately. It?s on `Node` rather than `ChildNodes` because the latter is a type alias to an external type (`HashMap`) so that would require an extension trait which needs to be imported separately. Differential Revision: https://phab.mercurial-scm.org/D10721
author Simon Sapin <simon.sapin@octobus.net>
date Wed, 19 May 2021 13:15:00 +0200
parents 1766130fe9ba
children bd88b6bfd8da
line wrap: on
line source

pub mod dirstate_map;
pub mod dispatch;
pub mod on_disk;
pub mod path_with_basename;
mod status;