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

The base container used for vector. More...

Public Member Functions

void defer (bool defer)
 
Constructors
 vector_base_container (void)
 
 vector_base_container (cid_type const &cid)
 Create a base container with a specific ID. More...
 
 vector_base_container (domain_type const &domain, cid_type const &cid)
 Create a base container with a specific domain. More...
 
 vector_base_container (domain_type const &domain, cid_type const &cid, value_type const &default_value)
 Create a base container with a specific domain, ID and initial value. More...
 
 vector_base_container (vector_base_container const &other)
 
vector_base_containeroperator= (vector_base_container const &other)
 
Element Manipulation
reference make_reference (gid_type const &gid)
 Construct a reference to an element of the base container using its GID. More...
 
iterator make_iterator (gid_type const &gid)
 Returns the iterator of a GID. More...
 
reference operator[] (gid_type const &gid)
 Construct a local reference to a specific index of the base container. More...
 
value_type get_element (gid_type const &gid)
 Get the element corresponding to the specified gid. More...
 
Traits::stored_type get_stored_element (gid_type const &gid) const
 Get the element corresponding to a specific GID. More...
 
template<typename F >
void apply_set (gid_type const &gid, F const &f)
 Invoke the functor provided on the element with the specified key. More...
 
template<typename Functor >
Functor::result_type apply_get (gid_type const &gid, Functor const &f)
 Apply a function object to an element at a specific GID and return the result. More...
 
void set_element (gid_type const &gid, typename Traits::stored_type const &t)
 Set an element in the base container. More...
 
template<typename Iterator >
std::enable_if< is_local_iterator< Iterator >::value >::type set_elements (gid_type const &gid, Iterator iter, Iterator e_iter)
 Update the values starting at gid using elements in the given iterator range.
 
template<typename Iterator >
std::enable_if<!is_local_iterator< Iterator >::value >::type set_elements (gid_type const &gid, Iterator iter, Iterator e_iter)
 
template<typename View >
void set_elements (gid_type const &gid, View &&view)
 
bool push_back (value_type const &t)
 Add t at the end of the base container. More...
 
void insert (gid_type const &gid, value_type const &t)
 Add t before gid in the base container. More...
 
void erase (gid_type const &gid)
 Erase an element of the base container. More...
 
void clear (void)
 Remove all elements from the base container.
 
gid_type pop_back (void)
 Remove the last element of the base container and return its gid. More...
 
iterator begin (void)
 Construct and return a local iterator to the first element of the base container.
 
const_iterator begin (void) const
 Construct and return a const local iterator to the first element of the base container.
 
iterator end (void)
 Construct and return a local iterator to one position past the last element of the base container.
 
const_iterator end (void) const
 Construct and return a const local iterator to one position past the last element of the base container.
 
Memory and Domain Management
container_type & container (void)
 Returns the data of the base container.
 
size_t size (void) const
 Returns the number of elements in this component.
 
cid_type const & cid (void) const
 Returns the cid of this component.
 
domain_type domain (void) const
 Returns the base container domain.
 
void set_domain (domain_type const &dom)
 Set the base container domain.
 

Public Types

typedef Traits::value_type value_type
 
typedef Traits::domain_type domain_type
 
typedef size_t cid_type
 
typedef domain_type::index_type gid_type
 
typedef domain_type::size_type size_type
 
typedef Traits::container_type container_type
 
typedef Traits::container_constructor container_constructor
 
typedef local_accessor< vector_base_containeraccessor_t
 
typedef proxy< value_type, accessor_treference
 
typedef const_local_accessor< vector_base_containerconst_accessor_t
 
typedef proxy< value_type, const_accessor_tconst_reference
 
typedef local_iterator< vector_base_containeriterator
 
typedef const_local_iterator< vector_base_containerconst_iterator
 
typedef base_container_metadata< vector_base_containerloc_dist_metadata
 

Protected Member Functions

gid_type local_position (gid_type const &gid) const
 Returns the local position of a global id. More...
 

Protected Attributes

domain_type m_domain
 The domain of this component.
 
container_type m_data
 The underlying raw data.
 
cid_type m_cid
 This component's id.
 
bool m_defer_cleanup
 

Detailed Description

template<typename Traits>
struct stapl::vector_base_container< Traits >

The base container used for vector.

See also
vector
Template Parameters
TraitsThe collection of traits types that defines customizable components used by the base container.

Constructor & Destructor Documentation

◆ vector_base_container() [1/3]

template<typename Traits >
stapl::vector_base_container< Traits >::vector_base_container ( cid_type const &  cid)

Create a base container with a specific ID.

Parameters
cidThe id for this base container.

◆ vector_base_container() [2/3]

template<typename Traits >
stapl::vector_base_container< Traits >::vector_base_container ( domain_type const &  domain,
cid_type const &  cid 
)

Create a base container with a specific domain.

Parameters
domainThe explicit domain for this component.
cidThe id for this component.

◆ vector_base_container() [3/3]

template<typename Traits >
stapl::vector_base_container< Traits >::vector_base_container ( domain_type const &  domain,
cid_type const &  cid,
value_type const &  default_value 
)

Create a base container with a specific domain, ID and initial value.

Parameters
domainThe explicit domain for this base container.
cidThe id for this base container.
default_valueThe default value for all elements in the base container.

Member Function Documentation

◆ local_position()

template<typename Traits >
gid_type stapl::vector_base_container< Traits >::local_position ( gid_type const &  gid) const
protected

Returns the local position of a global id.

Parameters
gidThe GID to find the local position of.

◆ make_reference()

template<typename Traits >
reference stapl::vector_base_container< Traits >::make_reference ( gid_type const &  gid)

Construct a reference to an element of the base container using its GID.

Parameters
gidThe GID for which to create a reference.
Returns
A proxy of the element at gid.

◆ make_iterator()

template<typename Traits >
iterator stapl::vector_base_container< Traits >::make_iterator ( gid_type const &  gid)

Returns the iterator of a GID.

Parameters
gidThe GID for which to create the iterator.
Returns
An iterator to the element at gid.

◆ operator[]()

template<typename Traits >
reference stapl::vector_base_container< Traits >::operator[] ( gid_type const &  gid)

Construct a local reference to a specific index of the base container.

Parameters
gidThe GID for which to create the reference
Returns
A proxy of the value at gid

◆ get_element()

template<typename Traits >
value_type stapl::vector_base_container< Traits >::get_element ( gid_type const &  gid)

Get the element corresponding to the specified gid.

Parameters
gidThe id associated with the element for which we want to read the value.
Returns
A reference to the element.

◆ get_stored_element()

template<typename Traits >
Traits::stored_type stapl::vector_base_container< Traits >::get_stored_element ( gid_type const &  gid) const

Get the element corresponding to a specific GID.

This method is used in the redistribution of composed containers. It is needed to allow the distributor object to get the instance of the container_wrapper_ref for a container instance on one location and send it to another location where it will be placed in a base container by calling set_element. set_element only accepts instances of the stored type.

Parameters
gidThe id associated with the element for which we want to read the value.
Returns
A copy of the stored instance of the element.

◆ apply_set()

template<typename Traits >
template<typename F >
void stapl::vector_base_container< Traits >::apply_set ( gid_type const &  gid,
F const &  f 
)

Invoke the functor provided on the element with the specified key.

Parameters
gidThe GID of the element to be processed.
fThe functor to apply

◆ apply_get()

template<typename Traits >
template<typename Functor >
Functor::result_type stapl::vector_base_container< Traits >::apply_get ( gid_type const &  gid,
Functor const &  f 
)

Apply a function object to an element at a specific GID and return the result.

Parameters
gidThe GID associated with the element for which we want to apply the functor and read the result.
fThe functor to apply to gid
Returns
The result of applying f to the value at gid

◆ set_element()

template<typename Traits >
void stapl::vector_base_container< Traits >::set_element ( gid_type const &  gid,
typename Traits::stored_type const &  t 
)

Set an element in the base container.

Parameters
gidThe gid of the element which should be set.
tValue to place in the base container.

◆ push_back()

template<typename Traits >
bool stapl::vector_base_container< Traits >::push_back ( value_type const &  t)

Add t at the end of the base container.

Parameters
tvalue to add.
Returns
Operation successful or not.

◆ insert()

template<typename Traits >
void stapl::vector_base_container< Traits >::insert ( gid_type const &  gid,
value_type const &  t 
)

Add t before gid in the base container.

Parameters
tvalue to add.
gidThe gid to insert t after.

◆ erase()

template<typename Traits >
void stapl::vector_base_container< Traits >::erase ( gid_type const &  gid)

Erase an element of the base container.

Parameters
gidgid referencing the element to remove.

◆ pop_back()

template<typename Traits >
gid_type stapl::vector_base_container< Traits >::pop_back ( void  )

Remove the last element of the base container and return its gid.

Returns
Returns the gid of the last element just removed.

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