MCPcopy Create free account
hub / github.com/RavEngine/RavEngine / Fill

Function Fill

deps/LLGL/sources/Core/Helper.h:62–65  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60// Fills the specified container with 'value' (using std::fill).
61template <class Container, class T>
62void Fill(Container& cont, const T& value)
63{
64 std::fill(std::begin(cont), std::end(cont), value);
65}
66
67// Returns true if the specified container contains the entry specified by 'value' (using std::find).
68template <class Container, class T>

Callers 2

GLStateManagerMethod · 0.85
ResizeMethod · 0.85

Calls 2

beginFunction · 0.50
endFunction · 0.50

Tested by

no test coverage detected