ba2/tes4/directory.rs
use crate::{
    derive,
    tes4::{self, File, FileHash},
};
use bstr::BString;
derive::key!(Key: FileHash);
impl Key<'_> {
    #[must_use]
    fn hash_in_place(name: &mut BString) -> FileHash {
        tes4::hash_file_in_place(name)
    }
}
derive::mapping! {
    /// Represents a directory within the TES4 virtual filesystem.
    Directory
    Map: (Key: FileHash) => File
}
#[cfg(test)]
mod tests {
    use crate::tes4::Directory;
    #[test]
    fn default_state() {
        let d = Directory::new();
        assert!(d.is_empty());
        assert!(d.len() == 0);
    }
}