/** * * * Created on: 23 jun. 2018 * Author: AKKA IS */ #include "Floor.hh" #include <cmath> template <typename Type> int _floor(const Type& el) { double dEl = (double)el; return (int)std::floor(dEl); } template <typename Type> std::vector<int> _floor(const std::vector<Type>& el) { std::vector<int> result; for (typename std::vector<Type>::const_iterator it = el.begin(); it != el.end(); ++it) { result.push_back(_floor(*it)); } return result; } int Floor(const float& el) { return _floor(el); } int Floor(const double& el) { return _floor(el); } int Floor(const long double& el) { return _floor(el); } int Floor(const int& el) { return _floor(el); } int Floor(const short& el) { return _floor(el); } std::vector<int> Floor(const std::vector<float>& el) { return _floor(el); } std::vector<int> Floor_(const std::vector<double>& el) { return _floor(el); } std::vector<int> Floor_(const std::vector<long double>& el) { return _floor(el); } std::vector<int> Floor_(const std::vector<int>& el) { return _floor(el); } std::vector<int> Floor_(const std::vector<short>& el) { return _floor(el); }