Category: functors | Component type: type |
const int N = 1000; vector<double> V1(N); vector<double> V2(N); iota(V1.begin(), V1.end(), 1); assert(V2.size() >= V1.size()); transform(V1.begin(), V1.end(), V2.begin(), negate<int>());
Parameter | Description | Default |
---|---|---|
T | The function object's argument type and result type. |
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: T |
T operator()(const T& x) | Adaptable Unary Function | Function call operator. The return value is -x. |
negate() | Default Constructible | The default constructor. |
Contact Us | Site Map | Trademarks | Privacy | Using this site means you accept its Terms of Use |
Copyright © 1993-2006 Silicon Graphics, Inc. All rights reserved. |