Udostępnij za pośrednictwem


not1 (STL/CLR)

Generuje unary_negate dla teoria.

template<typename Fun>
    unary_negate<Fun> not1(Fun% functor);

Parametry szablonu

  • Zabawa
    Typ teoria.

Parametry funkcji

  • Teoria
    Teoria zawijany.

Uwagi

The template function returns unary_negate (STL/CLR)<Fun>(functor).Służy to wygodny sposób otaczanie Teoria, która zapewnia jego logiczne nie Teoria jeden argument.

Przykład

// cliext_not1.cpp 
// compile with: /clr 
#include <cliext/algorithm> 
#include <cliext/functional> 
#include <cliext/vector> 
 
typedef cliext::vector<int> Myvector; 
int main() 
    { 
    Myvector c1; 
    c1.push_back(4); 
    c1.push_back(0); 
    Myvector c3(2, 0); 
 
// display initial contents " 4 0" 
    for each (int elem in c1) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
 
// transform and display 
    cliext::logical_not<int> not_op; 
 
    cliext::transform(c1.begin(), c1.begin() + 2, c3.begin(), 
        cliext::unary_negate<cliext::logical_not<int> >(not_op)); 
    for each (int elem in c3) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
 
// transform and display with function 
    cliext::transform(c1.begin(), c1.begin() + 2, c3.begin(), 
        cliext::not1(not_op)); 
    for each (int elem in c3) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
  

Wymagania

Nagłówek: < cliext/funkcjonalności >

Obszar nazw: cliext

Zobacz też

Informacje

unary_negate (STL/CLR)