feat: Introduce the RankedMap type

This commit is contained in:
Clément Renault
2019-03-29 17:38:57 +01:00
parent e41c551757
commit f17a05c342
3 changed files with 7 additions and 3 deletions

View File

@ -0,0 +1,5 @@
use hashbrown::HashMap;
use meilidb_core::DocumentId;
use crate::{SchemaAttr, Number};
pub type RankedMap = HashMap<(DocumentId, SchemaAttr), Number>;