<QtMinMax>

Funciones para limitar un valor a los límites inferior y/o superior. Más...

Header: #include <QtMinMax>

Funciones

const T &qBound(const T &min, const T &val, const T &max)
const T &qMax(const T &a, const T &b)
const T &qMin(const T &a, const T &b)

Descripción detallada

Documentación de funciones

[constexpr] template <typename T> const T &qBound(const T &min, const T &val, const T &max)

Devuelve val delimitado por min y max.

Ejemplo:

int myValue = 10;
int minValue = 2;
int maxValue = 6;

int boundedValue = qBound(minValue, myValue, maxValue);
// boundedValue == 6

Véase también qMin() y qMax().

[constexpr] template <typename T> const T &qMax(const T &a, const T &b)

Devuelve el máximo de a y b.

Ejemplo:

int myValue = 6;
int yourValue = 4;

int maxValue = qMax(myValue, yourValue);
// maxValue == myValue

Véase también qMin() y qBound().

[constexpr] template <typename T> const T &qMin(const T &a, const T &b)

Devuelve el mínimo de a y b.

Ejemplo:

int myValue = 6;
int yourValue = 4;

int minValue = qMin(myValue, yourValue);
// minValue == yourValue

Véase también qMax() y qBound().

© 2026 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.