folly::fbstring_detail::podFill

Fills a range of POD elements with a given value.

Synopsis

Declared in <folly/FBString.h>

template<
    class Pod,
    class T>
void
podFill(
    Pod* b,
    Pod* e,
    T c);

Parameters

NameDescription
bPointer to the first element to fill.
ePointer past the last element to fill.
cThe value written to every element in the range.