Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • C++

Idiom #314 Fill array with value

Set all the elements in the array x to the same value v

#include <array>
x.fill(v);
Array.Fill(x, v);

New implementation...