The OpenNET Project / Index page

[ новости /+++ | форум | теги | ]

Интерактивная система просмотра системных руководств (man-ов)

 ТемаНаборКатегория 
 
 [Cписок руководств | Печать]

Operators (3)
  • >> Operators (3) ( Solaris man: Библиотечные вызовы )
  • 
                           Standard C++ Library
                 Copyright 1998, Rogue Wave Software, Inc.
    
    
    NAME
         Operators
    
          - Operators for the C++ Standard Template Library.
    
    
    
    SYNOPSIS
         #include <utility>
         namespace rel_ops {
         template <class T>
         bool operator!= (const T&, const T&);
    
         template <class T>
         bool operator> (const T&, const T&);
    
         template <class T>
         bool operator<= (const T&, const T&);
    
         template <class T>
         bool operator>= (const T&, const T&);
         }
    
    
    
    DESCRIPTION
         To avoid redundant definitions of operator!= out  of  opera-
         tor==  and  of operators >, <=, and >= out of operator<, the
         library includes these definitions:
    
             operator!=(x,y) returns !(x==y)
    
             operator>(x,y)  returns y<x
    
             operator<=(x,y) returns !(y<x)
    
             operator>=(x,y) returns !(x<y)
    
         To avoid clashes with other global operators, these  defini-
         tions are contained in the namespace rel_ops.   To use them,
         either scope explicitly or  include  a  "using"  declaration
         (for example, using namespace rel_ops).
    
    
    
    


    Поиск по тексту MAN-ов: 




    Партнёры:
    PostgresPro
    Inferno Solutions
    Hosting by Hoster.ru
    Хостинг:

    Закладки на сайте
    Проследить за страницей
    Created 1996-2024 by Maxim Chirkov
    Добавить, Поддержать, Вебмастеру