नेगेट फ़ंक्शन का उपयोग दिए गए मानों को नकारने के लिए किया जाता है जैसे कि मानों के संकेत को बदलने के लिए। यह नकारात्मक मानों को सकारात्मक और इसके विपरीत में बदल देता है।
फ़ंक्शन प्रोटोटाइप:
function transform(a_begin, a_end, a1_begin, negate()): a_begin = lower bound of the array. a_end = upper bound of the array. a1_end = Lower bound of the second modified array. negate() = to negate the values of the array.
उदाहरण कोड
#include <algorithm> #include <functional> #include <iostream> using namespace std; int main() { int a[] = { 4,6,7, -10, -20, -30 }; transform(a, a + 6, a, negate<int>()); for (int i = 0; i < 6; i++) cout << a[i] << ' '; return 0; }
आउटपुट
-4 -6 -7 10 20 30