Skip to content

Commit

Permalink
Merge pull request #1350 from YBoy-git/collections_direct_access
Browse files Browse the repository at this point in the history
READY : (former) : Use direct collection_tools path
  • Loading branch information
Wandalen committed May 21, 2024
2 parents f28ed54 + 46cb060 commit 03d2b20
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion module/core/former/src/collection/binary_heap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

use crate::*;
#[ allow( unused ) ]
use collection_tools::heap::BinaryHeap;
use collection_tools::BinaryHeap;

impl< E > Collection for BinaryHeap< E >
{
Expand Down
2 changes: 1 addition & 1 deletion module/core/former/src/collection/btree_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//!

use crate::*;
use collection_tools::bmap::BTreeMap;
use collection_tools::BTreeMap;

impl< K, V > Collection for BTreeMap< K, V >
where
Expand Down
2 changes: 1 addition & 1 deletion module/core/former/src/collection/btree_set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

use crate::*;
#[ allow( unused ) ]
use collection_tools::bset::BTreeSet;
use collection_tools::BTreeSet;

impl< E > Collection for BTreeSet< E >
{
Expand Down
2 changes: 1 addition & 1 deletion module/core/former/src/collection/hash_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//!

use crate::*;
use collection_tools::hmap::HashMap;
use collection_tools::HashMap;

impl< K, V > Collection for HashMap< K, V >
where
Expand Down
2 changes: 1 addition & 1 deletion module/core/former/src/collection/hash_set.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! This module provides a builder pattern implementation (`HashSetFormer`) for `HashSet`-like collections. It is designed to extend the builder pattern, allowing for fluent and dynamic construction of sets within custom data structures.

use crate::*;
use collection_tools::hset::HashSet;
use collection_tools::HashSet;

impl< K > Collection for HashSet< K >
where
Expand Down
2 changes: 1 addition & 1 deletion module/core/former/src/collection/linked_list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

use crate::*;
#[ allow( unused ) ]
use collection_tools::list::LinkedList;
use collection_tools::LinkedList;

impl< E > Collection for LinkedList< E >
{
Expand Down
2 changes: 1 addition & 1 deletion module/core/former/src/collection/vector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

use crate::*;
#[ allow( unused ) ]
use collection_tools::vec::Vec;
use collection_tools::Vec;

impl< E > Collection for Vec< E >
{
Expand Down
2 changes: 1 addition & 1 deletion module/core/former/src/collection/vector_deque.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

use crate::*;
#[ allow( unused ) ]
use collection_tools::vecd::VecDeque;
use collection_tools::VecDeque;

impl< E > Collection for VecDeque< E >
{
Expand Down

0 comments on commit 03d2b20

Please sign in to comment.