diff --git a/docs/adjacency_list.html b/docs/adjacency_list.html index 07180266..bf6f751f 100644 --- a/docs/adjacency_list.html +++ b/docs/adjacency_list.html @@ -891,12 +891,31 @@ This sets the property value for x to typename property_traits<property_map<adjacency_list, Property>::type>::value_type
+ template <class GraphProperties, class GraphProperty> + typename property_value<GraphProperties, GraphProperty>::type& + get_property(adjacency_list& g, GraphProperty); ++Return the property specified by GraphProperty that is +attached to the graph object g. + +
+ template <class GraphProperties, class GraphProperty> + const typename property_value<GraphProperties, GraphProperty>::type& + get_property(const adjacency_list& g, GraphProperty); ++Return the property specified by GraphProperty that is +attached to the graph object g. + +