Struct CopyLoader¶
Defined in File copy_loader.hpp
Inheritance Relationships¶
Base Type¶
public ripple::InternalLoader< CopyLoader >
(Template Class InternalLoader)
Struct Documentation¶
-
struct
ripple
::
CopyLoader
: public ripple::InternalLoader<CopyLoader>¶ The CopyLoader is an implementation of an InternalLoader which simply copies data from one iterator to another.
Public Functions
-
template<typename
IteratorFrom
, typenameIteratorTo
>
constexpr autoload
(IteratorFrom &&from, IteratorTo &&to) const noexcept -> void¶ Loads the padding in the given dimension by setting the data in the to iterator from the from iterator data.
- Parameters
from
: An iterator to cell to load from.to
: An iterator to cell to load into.
- Template Parameters
IteratorFrom
: The type of the from iterator.IteratorTo
: The type of the to iterator.
-
template<typename