rust/hg-core/src/dirstate/dirstate_tree.rs
changeset 45562 b51167d70f5a
equal deleted inserted replaced
45558:80bf7b1ada15 45562:b51167d70f5a
       
     1 // dirstate_tree.rs
       
     2 //
       
     3 // Copyright 2020, Raphaël Gomès <rgomes@octobus.net>
       
     4 //
       
     5 // This software may be used and distributed according to the terms of the
       
     6 // GNU General Public License version 2 or any later version.
       
     7 
       
     8 //! Special-case radix tree that matches a filesystem hierarchy for use in the
       
     9 //! dirstate.
       
    10 //! It has not been optimized at all yet.
       
    11 
       
    12 pub mod iter;
       
    13 pub mod node;
       
    14 pub mod tree;