Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Re:Oh god so what? (Score 1) 193

Good luck with your typedefs:

template<typename Range>
double mean(const Range& range)
{
  double sum = 0.0; int count = 0;
  for(auto& v : range) {
    sum += v;
    ++count;
  }
  return sum/count;
}

Slashdot Top Deals

HELP!!!! I'm being held prisoner in /usr/games/lib!

Working...