Fill ==== .. code:: cpp template Img fill(Img ima, Img::value_type value_to_fill) { for (auto& value : ima.values()) { value = value_to_fill; } return ima; }