Template Function ripple::detail::load_internal¶
Defined in File load_internal_boundary_impl_.hpp
Function Documentation¶
-
template<size_t
Dims
, typenameItFrom
, typenameItTo
, dim_1d_enable_t<Dims> = 0>
autoripple::detail
::
load_internal
(ItFrom &&from, ItTo &&to) noexcept -> void¶ Loads the padding data for Dims dimensions, using the from iterator to copy the data into the to iterator.
This overload is only enabled when Dims = 1.
This overload is only enabled when Dims > 1, and it recursively calls the implementation from the largest dimension to the smallest dimension.
- Parameters
from
: The iterator to load the boundary data from.to
: The iterator to load the boundary data to.
- Template Parameters
Dims
: The number of dimensions to load for.ItFrom
: The type of the from iterator.ItTo
: The type of the to iterator.
- Parameters
from
: The iterator to load the boundary data from.to
: The iterator to load the boundary data to.
- Template Parameters
Dims
: The number of dimensions to load for.ItFrom
: The type of the from iterator.ItTo
: The type of the to iterator.