Type additions and renames #3

Merged
warrence merged 7 commits from dev into main 2026-07-06 19:13:13 +02:00
6 changed files with 11 additions and 0 deletions
Showing only changes of commit 6d2d1de8ea - Show all commits
+1
View File
@@ -1,3 +1,4 @@
#[doc(hidden)]
#[macro_export] #[macro_export]
macro_rules! bfs_tests { macro_rules! bfs_tests {
($T:ty) => { ($T:ty) => {
+1
View File
@@ -1,3 +1,4 @@
#[doc(hidden)]
#[macro_export] #[macro_export]
macro_rules! dfs_tests { macro_rules! dfs_tests {
($T:ty) => { ($T:ty) => {
+1
View File
@@ -1,3 +1,4 @@
#[doc(hidden)]
#[macro_export] #[macro_export]
macro_rules! dijkstra_tests { macro_rules! dijkstra_tests {
($T:ty) => { ($T:ty) => {
+1
View File
@@ -1,3 +1,4 @@
#[doc(hidden)]
#[macro_export] #[macro_export]
macro_rules! find_path_tests { macro_rules! find_path_tests {
($T:ty) => { ($T:ty) => {
+3
View File
@@ -1,3 +1,4 @@
#[doc(hidden)]
#[macro_export] #[macro_export]
macro_rules! graph_topology_test_fixtures { macro_rules! graph_topology_test_fixtures {
($T:ty) => { ($T:ty) => {
@@ -101,6 +102,7 @@ macro_rules! graph_topology_test_fixtures {
}; };
} }
#[doc(hidden)]
#[macro_export] #[macro_export]
macro_rules! graph_topology_tests { macro_rules! graph_topology_tests {
($T:ty) => { ($T:ty) => {
@@ -748,6 +750,7 @@ macro_rules! graph_topology_tests {
}; };
} }
#[doc(hidden)]
#[macro_export] #[macro_export]
macro_rules! graph_topology_deletion_tests { macro_rules! graph_topology_deletion_tests {
($T:ty) => { ($T:ty) => {
+4
View File
@@ -1,3 +1,4 @@
#[doc(hidden)]
#[macro_export] #[macro_export]
macro_rules! vertex_map_tests { macro_rules! vertex_map_tests {
($T:ty) => { ($T:ty) => {
@@ -78,6 +79,7 @@ macro_rules! vertex_map_tests {
}; };
} }
#[doc(hidden)]
#[macro_export] #[macro_export]
macro_rules! vertex_map_deletion_tests { macro_rules! vertex_map_deletion_tests {
($T:ty) => { ($T:ty) => {
@@ -130,6 +132,7 @@ macro_rules! vertex_map_deletion_tests {
}; };
} }
#[doc(hidden)]
#[macro_export] #[macro_export]
macro_rules! edge_map_tests { macro_rules! edge_map_tests {
($T:ty) => { ($T:ty) => {
@@ -222,6 +225,7 @@ macro_rules! edge_map_tests {
}; };
} }
#[doc(hidden)]
#[macro_export] #[macro_export]
macro_rules! edge_map_deletion_tests { macro_rules! edge_map_deletion_tests {
($T:ty) => { ($T:ty) => {