use tc_fs::CacheBlock;
use super::Txn;
pub type Collection = tc_collection::Collection<Txn, CacheBlock>;
pub type CollectionBase = tc_collection::CollectionBase<Txn, CacheBlock>;
pub type CollectionView<'en> = tc_collection::CollectionView<'en>;
pub type BTree = tc_collection::BTree<Txn, CacheBlock>;
pub type BTreeFile = tc_collection::btree::BTreeFile<Txn, CacheBlock>;
pub type Table = tc_collection::table::Table<Txn, CacheBlock>;
pub type TableFile = tc_collection::table::TableFile<Txn, CacheBlock>;
pub type Tensor = tc_collection::tensor::Tensor<Txn, CacheBlock>;
pub type TensorBase = tc_collection::tensor::TensorBase<Txn, CacheBlock>;
pub type Dense = tc_collection::tensor::Dense<Txn, CacheBlock>;
pub type DenseBase = tc_collection::tensor::DenseBase<Txn, CacheBlock>;
pub type Sparse = tc_collection::tensor::Sparse<Txn, CacheBlock>;
pub type SparseBase = tc_collection::tensor::SparseBase<Txn, CacheBlock>;