cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
Question on transform()
Question on transform()
Mar 15, 2012 at 11:54pm UTC
DexterMorgan
(107)
For transform(b, e, d, f)
Can the destination d be the same as b?
Thus making transform have the functionality of List.map() from functional programming languages.
Mar 16, 2012 at 1:52am UTC
ne555
(10692)
http://cplusplus.com/reference/algorithm/transform/
The function allows for the destination range to be the same as one of the input ranges to make transformations in place.
Yep
Mar 16, 2012 at 2:18am UTC
DexterMorgan
(107)
Thanks!!!!
Topic archived. No new replies allowed.