Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/HelenOS/helenos
/ fill_n
Function
fill_n
uspace/lib/cpp/include/__bits/algorithm.hpp:536–540 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
534
535
template<class InputIterator, class Size, class T>
536
void fill_n(InputIterator first, Size count, const T& value)
537
{
538
for (Size i = 0; i < count; ++i)
539
*first++ = value;
540
}
541
542
/**
543
* 25.3.7, generate:
Callers
1
fill
Method · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected