Logo

Programming-Idioms

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

Idiom #339 Clear a byte array

Set all the elements of the byte array a to zero

import numpy
a = numpy.ones((n,), numpy.uint8)
a.fill(0)

This is using the external library numpy to create an array of n values of 1.
Array.Fill(a, (byte)0);

New implementation...
< >
programming-idioms.org