IRIX 6.5 » Books » Developer »
Standard Template Library Programmer's Guide
(document number: 007-3426-004 / published: 1999-05-21)
table of contents | additional info | download
find in page
| Category: functors | Component type: type |
vector<bool> V; ... transform(V.begin(), V.end(), V.begin(), logical_not<bool>());
| Parameter | Description | Default |
|---|---|---|
| T | The type of logical_not's argument |
| Member | Where defined | Description |
|---|---|---|
| argument_type | Adaptable Unary Function | The type of the second argument: T |
| result_type | Adaptable Unary Function | The type of the result: bool |
| bool operator()(const T& x) const | Unary Function | Function call operator. The return value is !x. |
| logical_not() | Default Constructible | The default constructor. |
Standard Template Library Programmer's Guide
(document number: 007-3426-004 / published: 1999-05-21)
table of contents | additional info | download
Copyright © 1993-2007 SGI, Inc. All rights reserved.