Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
QtMultimediaPrivate::ranges Namespace Reference

Variables

constexpr auto equal
constexpr auto fill

Variable Documentation

◆ equal

auto QtMultimediaPrivate::ranges::equal
constexpr
Initial value:
= [](const auto &lhs, const auto &rhs, auto &&predicate) {
return std::equal(lhs.begin(), lhs.end(), rhs.begin(), rhs.end(), predicate);
}

Definition at line 38 of file qmultimedia_ranges_p.h.

◆ fill

auto QtMultimediaPrivate::ranges::fill
constexpr
Initial value:
= [](auto &range, auto &&value) {
return std::fill(std::begin(range), std::end(range), value);
}
EGLOutputLayerEXT EGLint EGLAttrib value
[3]
GLsizei range

Definition at line 42 of file qmultimedia_ranges_p.h.