STAPL API Reference          
Overview   Containers   Algorithms   Views   Skeletons   Run-Time System
Modules     Classes    
List of all members | Public Member Functions | Public Types
stapl::graph_external_edge_property_map< PG, Property, View > Class Template Reference

External property map to store edge properties. More...

Public Member Functions

 graph_external_edge_property_map (PG const &graph, view_type const &props)
 Creates an external edge property map for the given graph using the provided view as storage. More...
 
template<typename Edge , typename Functor2 >
void apply (Edge e, Functor2 f2)
 Applies the specified functor to the property associated with the provided edge. More...
 
template<typename Edge >
void put (Edge e, value_type c)
 Sets the property associated with the provided edge to the provided value. More...
 
template<typename Edge >
value_type get (Edge e)
 Returns the property associated with the provided edge. More...
 
void reset ()
 Not used. Provided for compatibility.
 

Public Types

typedef PG::vertex_descriptor vertex_descriptor
 
typedef PG::vertex_reference vertex_reference
 
typedef PG::reference reference
 
typedef Property value_type
 
typedef View view_type
 

Detailed Description

template<class PG, class Property, class View>
class stapl::graph_external_edge_property_map< PG, Property, View >

External property map to store edge properties.

Template Parameters
PGThe graph view.
PropertyProperty type of the edge.
ViewType of the view for storing external properties.

Constructor & Destructor Documentation

◆ graph_external_edge_property_map()

template<class PG , class Property , class View >
stapl::graph_external_edge_property_map< PG, Property, View >::graph_external_edge_property_map ( PG const &  graph,
view_type const &  props 
)

Creates an external edge property map for the given graph using the provided view as storage.

Parameters
PGThe graph view.
propsThe external view where properties will be stored.

Member Function Documentation

◆ apply()

template<class PG , class Property , class View >
template<typename Edge , typename Functor2 >
void stapl::graph_external_edge_property_map< PG, Property, View >::apply ( Edge  e,
Functor2  f2 
)

Applies the specified functor to the property associated with the provided edge.

Parameters
eThe edge associated with the property. Can either be an edge object/proxy/reference or an edge descriptor.
f2The functor to apply.

◆ put()

template<class PG , class Property , class View >
template<typename Edge >
void stapl::graph_external_edge_property_map< PG, Property, View >::put ( Edge  e,
value_type  c 
)

Sets the property associated with the provided edge to the provided value.

Parameters
eThe edge associated with the property. Can either be an edge object/proxy/reference or an edge descriptor.
cThe value of the property.

◆ get()

template<class PG , class Property , class View >
template<typename Edge >
value_type stapl::graph_external_edge_property_map< PG, Property, View >::get ( Edge  e)

Returns the property associated with the provided edge.

Parameters
eThe edge associated with the property. Can either be an edge object/proxy/reference or an edge descriptor.
Returns
The value of the property.

The documentation for this class was generated from the following file: