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