Fills a range of POD elements with a given value.
Declared in <folly/FBString.h>
template<
class Pod,
class T>
void
podFill(
Pod* b,
Pod* e,
T c);
| Name | Description |
|---|---|
| b | Pointer to the first element to fill. |
| e | Pointer past the last element to fill. |
| c | The value written to every element in the range. |