/** * ceil.hh * * Created on: 23 jun. 2018 * Author: AKKA IS */ #ifndef CEIL_HH_ #define CEIL_HH_ #include /** * @bried Compute the ceil of el */ int Ceil(const float& el); int Ceil(const double& el); int Ceil(const long double& el); int Ceil(const int& el); int Ceil(const short& el); std::vector Ceil(const std::vector& el); std::vector Ceil(const std::vector& el); std::vector Ceil(const std::vector& el); std::vector Ceil(const std::vector& el); std::vector Ceil(const std::vector& el); #endif /* CEIL_HH_ */