boost::gil::static_for_each

Equivalent to std::for_each. Pairs the elements semantically

Synopses

Equivalent to std::for_each. Pairs the elements semantically

template<
    typename P1,
    typename Op>
[[__always_inline__]]
Op
static_for_each(
    P1& p1,
    Op op);
template<
    typename P1,
    typename Op>
[[__always_inline__]]
Op
static_for_each(
    P1 const& p1,
    Op op);
template<
    typename P1,
    typename P2,
    typename Op>
[[__always_inline__]]
Op
static_for_each(
    P1& p1,
    P2& p2,
    Op op);
template<
    typename P1,
    typename P2,
    typename Op>
[[__always_inline__]]
Op
static_for_each(
    P1& p1,
    P2 const& p2,
    Op op);
template<
    typename P1,
    typename P2,
    typename Op>
[[__always_inline__]]
Op
static_for_each(
    P1 const& p1,
    P2& p2,
    Op op);
template<
    typename P1,
    typename P2,
    typename Op>
[[__always_inline__]]
Op
static_for_each(
    P1 const& p1,
    P2 const& p2,
    Op op);
template<
    typename P1,
    typename P2,
    typename P3,
    typename Op>
[[__always_inline__]]
Op
static_for_each(
    P1& p1,
    P2& p2,
    P3& p3,
    Op op);
template<
    typename P1,
    typename P2,
    typename P3,
    typename Op>
[[__always_inline__]]
Op
static_for_each(
    P1& p1,
    P2& p2,
    P3 const& p3,
    Op op);
template<
    typename P1,
    typename P2,
    typename P3,
    typename Op>
[[__always_inline__]]
Op
static_for_each(
    P1& p1,
    P2 const& p2,
    P3& p3,
    Op op);
template<
    typename P1,
    typename P2,
    typename P3,
    typename Op>
[[__always_inline__]]
Op
static_for_each(
    P1& p1,
    P2 const& p2,
    P3 const& p3,
    Op op);
template<
    typename P1,
    typename P2,
    typename P3,
    typename Op>
[[__always_inline__]]
Op
static_for_each(
    P1 const& p1,
    P2& p2,
    P3& p3,
    Op op);
template<
    typename P1,
    typename P2,
    typename P3,
    typename Op>
[[__always_inline__]]
Op
static_for_each(
    P1 const& p1,
    P2& p2,
    P3 const& p3,
    Op op);
template<
    typename P1,
    typename P2,
    typename P3,
    typename Op>
[[__always_inline__]]
Op
static_for_each(
    P1 const& p1,
    P2 const& p2,
    P3& p3,
    Op op);
template<
    typename P1,
    typename P2,
    typename P3,
    typename Op>
[[__always_inline__]]
Op
static_for_each(
    P1 const& p1,
    P2 const& p2,
    P3 const& p3,
    Op op);

Created with MrDocs