STAPL API Reference          
Overview   Containers   Algorithms   Views   Skeletons   Run-Time System
Modules     Classes    
List of all members | Public Member Functions | Public Types | Public Attributes
stapl::local_accessor_graph< C > Class Template Reference

Local accessor for pGraph's vertices.Derives from local_accessor and adds methods for property. More...

Public Member Functions

 local_accessor_graph (C *container, iterator const &it)
 
 local_accessor_graph (null_reference const &nr)
 Construct an accessor for a null reference. More...
 
 local_accessor_graph (local_accessor_graph const &other)
 
value_type & ref ()
 Read the reference by returning a true reference of the value pointed to by the iterator. More...
 
value_type const & ref () const
 
property_reference property ()
 
const_property_reference property () const
 
const_property_reference const_property () const
 
gid_type index () const
 
bool is_null () const
 Returns whether or not this is a null accessor.
 
value_type read () const
 Read the reference by returning a copy of the value pointed to by the iterator.
 
void write (value_type const &val)
 Write the reference by setting the value pointed to by the iterator to a given value. More...
 
void write (value_type &&val)
 Write the reference by forwarding the given value to the element pointed to by the iterator. More...
 
template<typename F >
void apply_set (F const &f) const
 Applies an arbitrary functor to the reference element. More...
 
template<typename F >
F::result_type apply_get (F const &f) const
 Applies an arbitrary functor to the reference element and returns the result. More...
 
template<typename Class , typename... Args>
void invoke (void(Class::*const pmf)(Args...), typename std::decay< Args >::type const &... args) const
 
template<typename Class , typename Rtn , typename... Args>
Rtn invoke (Rtn(Class::*const pmf)(Args...), typename std::decay< Args >::type const &... args) const
 
template<typename Class , typename Rtn , typename... Args>
Rtn const_invoke (Rtn(Class::*const pmf)(Args...) const, typename std::decay< Args >::type const &... args) const
 

Public Types

typedef C::value_type value_type
 
typedef base_type::gid_type gid_type
 
typedef local_property_reference_constructor< typename value_type::property_type, typename value_type::property_reference > referencer_t
 
typedef referencer_t::result_type property_reference
 
typedef const_local_property_reference_constructor< typename value_type::property_type, typename value_type::const_property_reference > const_referencer_t
 
typedef const_referencer_t::result_type const_property_reference
 
using index_type = gid_type
 

Public Attributes

iterator m_itr
 
C * m_container
 

Detailed Description

template<typename C>
class stapl::local_accessor_graph< C >

Local accessor for pGraph's vertices.

Derives from local_accessor and adds methods for property.

Template Parameters
Ctype of the pGraph.

Constructor & Destructor Documentation

◆ local_accessor_graph()

template<typename C>
stapl::local_accessor_graph< C >::local_accessor_graph ( null_reference const &  nr)

Construct an accessor for a null reference.

Member Function Documentation

◆ ref()

template<typename C>
value_type& stapl::local_accessor_graph< C >::ref ( )

Read the reference by returning a true reference of the value pointed to by the iterator.

◆ write() [1/2]

template<typename C >
void stapl::local_accessor< C >::write ( value_type const &  val)
inherited

Write the reference by setting the value pointed to by the iterator to a given value.

Parameters
valAn element that can be convertible to the reference's value_type that is to be written

◆ write() [2/2]

template<typename C >
void stapl::local_accessor< C >::write ( value_type &&  val)
inherited

Write the reference by forwarding the given value to the element pointed to by the iterator.

Parameters
valAn rvalue reference to an element that can be converted

◆ apply_set()

template<typename C >
template<typename F >
void stapl::local_accessor< C >::apply_set ( F const &  f) const
inherited

Applies an arbitrary functor to the reference element.

Parameters
fFunctor to apply. The function operator of the functor must be declared const.

◆ apply_get()

template<typename C >
template<typename F >
F::result_type stapl::local_accessor< C >::apply_get ( F const &  f) const
inherited

Applies an arbitrary functor to the reference element and returns the result.

Parameters
fFunctor to apply. The function object must export a nested trait for result_type and its function operator must be declared const
Returns
Result of applying the functor to the element

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