operator<= (Operador) (<thread>)

Determina si un objeto de thread::id menor o igual que otro.

bool operator<= (
   thread::id Left,
   thread::id Right) _NOEXCEPT

Parámetros

  • Left
    Objeto thread::id izquierdo.

  • Right
    Objeto thread::id derecho.

Valor devuelto

!(Right < Left)

Comentarios

Esta función no produce ninguna excepción.

Requisitos

Encabezado: thread

Espacio de nombres: std

Vea también

Referencia

<thread>

operator< (Operador) (<thread>)

Otros recursos

Archivos de encabezado de la biblioteca estándar de C++