You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// @brief Implicitly converts to the initial ID value of 0 for any type that satisfies the [**c_id_type**](gl_traits.md#gl-traits-c-id-type) concept.
33
+
/// @brief Implicitly converts to the initial ID value of 0 for any type that satisfies the [**c_id_type**](gl_concepts.md#gl-traits-c-id-type) concept.
/// 1\. The `initial_id` constant can be implicitly converted to the `v1`'s type (`vertex_id_t`), resulting in `v1` being initialized to the value of 0.
/// enabling easy checking if a given ID is invalid without needing to explicitly reference
86
86
/// the `invalid_id_v` constant for the specific ID type.
87
87
///
88
-
/// @tparam IdType The type of the ID, which must satisfy the [**c_id_type**](gl_traits.md#gl-traits-c-id-type) concept.
88
+
/// @tparam IdType The type of the ID, which must satisfy the [**c_id_type**](gl_concepts.md#gl-traits-c-id-type) concept.
89
89
/// @param lhs The ID value to compare againsyt the invalid ID constant.
90
90
/// @param rhs The `invalid_id` constant (of type `invalid_id_t`) to compare with the ID value.
91
91
/// @return Returns `true` if `lhs` is equal to the invalid ID value for its type, and `false` otherwise.
@@ -107,7 +107,7 @@ struct invalid_id_t {
107
107
/// 1\. The `invalid_id` constant can be implicitly converted to the `v1`'s type (`vertex_id_t`), resulting in `v1` being initialized to the maximum value of `vertex_id_t`, which represents an invalid ID.
Copy file name to clipboardExpand all lines: include/gl/directional_tags.hpp
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ concept c_undirected_edge =
67
67
///
68
68
/// ### See Also
69
69
/// - @ref gl::undirected_t "undirected_t" : For the tag representing an undirected graph configuration.
70
-
/// - [**c_graph_directional_tag**](gl_traits.md#gl-traits-c-graph-directional-tag) : For the concept used to validate graph directional tags.
70
+
/// - [**c_graph_directional_tag**](gl_concepts.md#gl-traits-c-graph-directional-tag) : For the concept used to validate graph directional tags.
71
71
/// - @ref gl::edge_descriptor "edge_descriptor" : For the edge descriptor type defined based on the graph traits, which includes the directional tag as part of its definition.
72
72
structdirected_t {
73
73
/// @brief A type identity alias for the directed_t tag, allowing for easier type comparisons and trait evaluations.
@@ -109,7 +109,7 @@ struct directed_t {
109
109
///
110
110
/// ### See Also
111
111
/// - @ref gl::directed_t "directed_t" : For the tag representing a directed graph configuration.
112
-
/// - [**c_graph_directional_tag**](gl_traits.md#gl-traits-c-graph-directional-tag) : For the concept used to validate graph directional tags.
112
+
/// - [**c_graph_directional_tag**](gl_concepts.md#gl-traits-c-graph-directional-tag) : For the concept used to validate graph directional tags.
113
113
/// - @ref gl::edge_descriptor "edge_descriptor" : For the edge descriptor type defined based on the graph traits, which includes the directional tag as part of its definition.
114
114
structundirected_t {
115
115
/// @brief A type identity alias for the undirected_t tag, allowing for easier type comparisons and trait evaluations.
/// | DirectionalTag | Tag specifying if the edge is directed or undirected. | @ref gl::directed_t "directed_t" | [**c_graph_directional_tag**](gl_traits.md#gl-traits-c-graph-directional-tag) |
63
-
/// | Properties | The type of property data attached to the edge. | @ref gl::empty_properties "empty_properties" | [**c_properties**](gl_traits.md#gl-traits-c-properties) |
64
-
/// | IdType | The underlying integer type used for the IDs. | @ref gl::default_id_type "default_id_type" | [**c_id_type**](gl_traits.md#gl-traits-c-id-type) |
62
+
/// | DirectionalTag | Tag specifying if the edge is directed or undirected. | @ref gl::directed_t "directed_t" | [**c_graph_directional_tag**](gl_concepts.md#gl-traits-c-graph-directional-tag) |
63
+
/// | Properties | The type of property data attached to the edge. | @ref gl::empty_properties "empty_properties" | [**c_properties**](gl_concepts.md#gl-traits-c-properties) |
64
+
/// | IdType | The underlying integer type used for the IDs. | @ref gl::default_id_type "default_id_type" | [**c_id_type**](gl_concepts.md#gl-traits-c-id-type) |
65
65
///
66
66
/// ### See Also
67
67
/// * @ref gl::vertex_descriptor : For the corresponding vertex wrapper class.
/// | Properties | The type of property data attached to the edge. | @ref gl::empty_properties "empty_properties" | [**c_properties**](gl_traits.md#gl-traits-c-properties) |
386
-
/// | IdType | The underlying integer type used for the IDs. | @ref gl::default_id_type "default_id_type" | [**c_id_type**](gl_traits.md#gl-traits-c-id-type) |
385
+
/// | Properties | The type of property data attached to the edge. | @ref gl::empty_properties "empty_properties" | [**c_properties**](gl_concepts.md#gl-traits-c-properties) |
386
+
/// | IdType | The underlying integer type used for the IDs. | @ref gl::default_id_type "default_id_type" | [**c_id_type**](gl_concepts.md#gl-traits-c-id-type) |
/// | Properties | The type of property data attached to the edge. | @ref gl::empty_properties "empty_properties" | [**c_properties**](gl_traits.md#gl-traits-c-properties) |
401
-
/// | IdType | The underlying integer type used for the IDs. | @ref gl::default_id_type "default_id_type" | [**c_id_type**](gl_traits.md#gl-traits-c-id-type) |
400
+
/// | Properties | The type of property data attached to the edge. | @ref gl::empty_properties "empty_properties" | [**c_properties**](gl_concepts.md#gl-traits-c-properties) |
401
+
/// | IdType | The underlying integer type used for the IDs. | @ref gl::default_id_type "default_id_type" | [**c_id_type**](gl_concepts.md#gl-traits-c-id-type) |
0 commit comments