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

Operations class for container distributions that provides set_element. More...

Public Member Functions

void set_element (gid_type const &gid, value_type const &val)
 Update the element at a GID by replacing it with a given value. More...
 
template<typename SourceView , typename std::enable_if< use_bc_set_elements< typename std::decay< SourceView >::type >::value, int >::type = 0>
void set_elements (gid_type gid, SourceView &&source_view)
 Update a range of contiguous elements in the container, starting at gid. A total of view.size() elements will be updated with the values in view. More...
 
template<typename View , typename std::enable_if< !use_bc_set_elements< typename std::decay< View >::type >::value, int >::type = 0>
void set_elements (gid_type gid, View &&view)
 Signature of set_elements used when underlying base container is not supported. Fall back to iterative use of set_element.
 

Detailed Description

template<typename Derived>
class stapl::operations::settable< Derived >

Operations class for container distributions that provides set_element.

Uses the CRTP pattern. Requires that the base container has a set_element method that takes a single GID.

Template Parameters
DerivedThe most derived distribution class

Member Function Documentation

◆ set_element()

template<typename Derived>
void stapl::operations::settable< Derived >::set_element ( gid_type const &  gid,
value_type const &  val 
)

Update the element at a GID by replacing it with a given value.

Parameters
gidGID of the element to replace
valThe new value for the element

◆ set_elements()

template<typename Derived>
template<typename SourceView , typename std::enable_if< use_bc_set_elements< typename std::decay< SourceView >::type >::value, int >::type = 0>
void stapl::operations::settable< Derived >::set_elements ( gid_type  gid,
SourceView &&  source_view 
)

Update a range of contiguous elements in the container, starting at gid. A total of view.size() elements will be updated with the values in view.

Note
Implementation assumes partition::try_get_domain will not fail if partition::contained_in succeeds.

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