boost::gil::static_transform

Equivalent to std::transform. Pairs the elements semantically

Synopses

Equivalent to std::transform. Pairs the elements semantically

template<
    typename Src,
    typename Dst,
    typename Op>
[[__always_inline__]]
Op
static_transform(
    Src& src,
    Dst& dst,
    Op op);
template<
    typename Src,
    typename Dst,
    typename Op>
[[__always_inline__]]
Op
static_transform(
    Src const& src,
    Dst& dst,
    Op op);
template<
    typename P2,
    typename P3,
    typename Dst,
    typename Op>
[[__always_inline__]]
Op
static_transform(
    P2& p2,
    P3& p3,
    Dst& dst,
    Op op);
template<
    typename P2,
    typename P3,
    typename Dst,
    typename Op>
[[__always_inline__]]
Op
static_transform(
    P2& p2,
    P3 const& p3,
    Dst& dst,
    Op op);
template<
    typename P2,
    typename P3,
    typename Dst,
    typename Op>
[[__always_inline__]]
Op
static_transform(
    P2 const& p2,
    P3& p3,
    Dst& dst,
    Op op);
template<
    typename P2,
    typename P3,
    typename Dst,
    typename Op>
[[__always_inline__]]
Op
static_transform(
    P2 const& p2,
    P3 const& p3,
    Dst& dst,
    Op op);

Created with MrDocs