STAPL API Reference          
Overview   Containers   Algorithms   Views   Skeletons   Run-Time System
Modules     Classes    
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
List of all members | Public Member Functions | Public Types | Public Attributes | Protected Member Functions
stapl::view_impl::reverse_view< View > Class Template Reference

Defines a reverse view over the specified View. More...

Public Member Functions

 reverse_view (View const &view)
 Constructs a reverse view over the given view.
 
 reverse_view (view_container_type *vcont, domain_type const &dom, map_func_type mfunc=map_func_type())
 Constructor used to pass ownership of the container to the view. More...
 
 reverse_view (view_container_type const &vcont, domain_type const &dom, map_func_type mfunc, reverse_view const &other)
 Constructor that does not takes ownership over the passed container. More...
 
 reverse_view (view_container_type const &vcont, domain_type const &dom, map_func_type mfunc=map_func_type())
 Constructor that does not takes ownership over the passed container. More...
 
 reverse_view (reverse_view const &other)
 
iterator begin (void)
 
iterator end (void)
 
const_iterator begin (void) const
 
const_iterator end (void) const
 
index_type next (index_type index) const
 Returns the next index after the given index. More...
 
index_type prev (index_type index) const
 Returns the next index after the given index. More...
 
value_type get_element (index_type index)
 
bool is_valid (void) const
 
view_container_type * get_container (void) const
 
view_container_type & container (void)
 
view_container_type & container (void) const
 
domain_type const & domain (void) const
 
domain_type & domain (void)
 
void set_domain (domain_type const &dom)
 
map_func_type const & mapfunc (void) const
 
size_type size (void) const
 Returns the number of elements referenced for the view.
 
bool empty (void) const
 Returns true if the view does not reference any element.
 

Public Types

typedef View target_view_type
 
typedef View::view_container_type view_container_type
 
typedef view_container_type container_type
 
typedef view_container_type::reference reference
 
typedef view_container_type::const_reference const_reference
 
typedef View::domain_type domain_type
 
typedef View::map_func_type map_func_type
 
typedef map_func_type map_function
 
typedef view_container_type::value_type value_type
 
typedef domain_type::index_type index_type
 
typedef index_iterator< reverse_viewiterator
 
typedef const_index_iterator< reverse_viewconst_iterator
 
typedef metadata::reverse_extractor< reverse_viewloc_dist_metadata
 
typedef View view_type
 
typedef mf_type_helper::gid_type gid_type
 
typedef std::size_t size_type
 

Public Attributes

size_t m_total_size
 
View::view_container_type * m_ptr
 
sptr_type m_sptr
 

Protected Member Functions

View::view_container_type * container_ptr (void) const
 Returns the container's pointer.
 

Detailed Description

template<typename View>
class stapl::view_impl::reverse_view< View >

Defines a reverse view over the specified View.

This view provides a reverse traversal over the elements referenced for the specified view.

Constructor & Destructor Documentation

◆ reverse_view() [1/3]

template<typename View>
stapl::view_impl::reverse_view< View >::reverse_view ( view_container_type *  vcont,
domain_type const &  dom,
map_func_type  mfunc = map_func_type() 
)

Constructor used to pass ownership of the container to the view.

Parameters
vcontPointer to the container used to forward the operations.
domDomain to be used by the view.
mfuncMapping function to transform view indices to container gids.

◆ reverse_view() [2/3]

template<typename View>
stapl::view_impl::reverse_view< View >::reverse_view ( view_container_type const &  vcont,
domain_type const &  dom,
map_func_type  mfunc,
reverse_view< View > const &  other 
)

Constructor that does not takes ownership over the passed container.

Parameters
vcontReference to the container used to forward the operations.
domDomain to be used by the view.
mfuncMapping function to transform view indices to container gids.
otherView to copy from.

◆ reverse_view() [3/3]

template<typename View>
stapl::view_impl::reverse_view< View >::reverse_view ( view_container_type const &  vcont,
domain_type const &  dom,
map_func_type  mfunc = map_func_type() 
)

Constructor that does not takes ownership over the passed container.

Parameters
vcontReference to the container used to forward the operations.
domDomain to be used by the view.
mfuncMapping function to transform view indices to container gids.
otherView to copy from.

Member Function Documentation

◆ next()

template<typename View>
index_type stapl::view_impl::reverse_view< View >::next ( index_type  index) const

Returns the next index after the given index.

The order follows the reverse order provided for the associated view.

◆ prev()

template<typename View>
index_type stapl::view_impl::reverse_view< View >::prev ( index_type  index) const

Returns the next index after the given index.

The order follows the reverse order provided for the associated view.

◆ get_container()

view_container_type* stapl::core_view< View::view_container_type , View::domain_type , View::map_func_type >::get_container ( void  ) const
inherited

◆ container()

view_container_type& stapl::core_view< View::view_container_type , View::domain_type , View::map_func_type >::container ( void  ) const
inherited

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