Compartilhar via


operator<= <array>

Comparação, menor que ou igual da matriz.

template<Ty, std::size_t N>
    bool operator<=(
        const array<Ty, N>& left,
        const array<Ty, N>& right);

Parâmetros

  • Ty
    O tipo de um elemento.

  • N
    O tamanho da matriz.

  • left
    Contêiner esquerdo da ser comparada.

  • right
    Contêiner direito da ser comparada.

Comentários

A função do modelo retorna !(right < left).

Exemplo

 

// std_tr1__array__operator_le.cpp 
// compile with: /EHsc 
#include <array> 
#include <iostream> 
 
typedef std::array<int, 4> Myarray; 
int main() 
    { 
    Myarray c0 = {0, 1, 2, 3}; 
 
// display contents " 0 1 2 3" 
    for (Myarray::const_iterator it = c0.begin(); 
        it != c0.end(); ++it) 
        std::cout << " " << *it; 
    std::cout << std::endl; 
 
    Myarray c1 = {4, 5, 6, 7}; 
 
// display contents " 4 5 6 7" 
    for (Myarray::const_iterator it = c1.begin(); 
        it != c1.end(); ++it) 
        std::cout << " " << *it; 
    std::cout << std::endl; 
 
// display results of comparisons 
    std::cout << std::boolalpha << " " << (c0 <= c0); 
    std::cout << std::endl; 
    std::cout << std::boolalpha << " " << (c1 <= c0); 
    std::cout << std::endl; 
 
    return (0); 
    } 
 
  

Requisitos

matriz <deCabeçalho: >

Namespace: std

Consulte também

Referência

<array>

operator== <array>

operator!= <array>

operator>= <array>

operator> <array>

operator< <array>