Logo

Programming-Idioms

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

Idiom #314 Fill array with value

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

import static java.util.Arrays.fill;
fill(x, v);
#include <array>
x.fill(v);

New implementation...