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

Accessor for local proxies over base containers. More...

Public Member Functions

 const_local_accessor (C const *container, const_iterator const &it)
 Construct a local accessor with the container pointer and an iterator to the value for which to create the reference. More...
 
 const_local_accessor (null_reference const &)
 Construct an accessor for a null reference.
 
 const_local_accessor (const_local_accessor const &other)
 
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.
 
gid_type index () const
 Return the index (GID) of the reference.
 
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...
 
void write (U const &value) const
 
void invoke (void(Class::*const memberFuncPtr)(Args...), typename std::decay< Args >::type const &... args) const
 
Rtn invoke (Rtn(Class::*const memberFuncPtr)(Args...), typename std::decay< Args >::type const &... args) const
 
Rtn const_invoke (Rtn(Class::*const memberFuncPtr)(Args...) const, typename std::decay< Args >::type const &... args) const
 

Public Types

typedef container_traits< C >::value_type value_type
 
typedef container_traits< C >::gid_type gid_type
 
typedef gid_type index_type
 

Public Attributes

const_iterator m_itr
 
C const * m_container
 

Friends

class accessor_core_access
 

Detailed Description

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

Accessor for local proxies over base containers.

Template Parameters
CType of the container
IteratorType used by the base container for its iterators
See also
proxy

Constructor & Destructor Documentation

◆ const_local_accessor()

template<typename C >
stapl::const_local_accessor< C >::const_local_accessor ( C const *  container,
const_iterator const &  it 
)

Construct a local accessor with the container pointer and an iterator to the value for which to create the reference.

Parameters
containerPointer to the container
itIterator to the element

Member Function Documentation

◆ apply_get()

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

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: