boost::gil::static_fill
Equivalent to std::fill.
Synopsis
template<
typename P,
typename V>
[[__always_inline__]]
void
static_fill(
P& p,
V const& v);
Description
Example:
rgb8_pixel_t p;
static_fill(p, 10);
assert(p == rgb8_pixel_t(10,10,10));
{
Created with MrDocs