Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Modules

test

mod a {
    pub mod b {
        pub mod c {
            pub part M1() {}
        }
    }

    pub part M2() {}
}

a::b::c::M1();
a::M2();