How to bind divides<double> and make calculation in C++

1 Answer

0 votes
#include <iostream>
#include <functional>

using std::cout;
using std::endl;

int main()
{
	auto invertedDivision = std::bind(std::divides<double>(),
		                              std::placeholders::_2,
		                              std::placeholders::_1);
	
	cout << invertedDivision(23, 5) << endl;
}

/*
run:

0.217391

*/

 



answered Jan 26, 2018 by avibootz

Related questions

1 answer 194 views
1 answer 162 views
1 answer 175 views
1 answer 136 views
...