Floor.hh 628 Bytes
/**
 * Floor.hh
 *
 *  Created on: 23 jun. 2018
 *      Author: AKKA IS
 */

#ifndef FLOOR_HH_
#define FLOOR_HH_

#include <vector>

/**
 * @bried Compute the floor of el
 */
int Floor(const float& el);

int Floor(const double& el);

int Floor(const long double& el);

int Floor(const int& el);

int Floor(const short& el);

std::vector<int> Floor(const std::vector<float>& el);

std::vector<int> Floor(const std::vector<double>& el);

std::vector<int> Floor(const std::vector<long double>& el);

std::vector<int> Floor(const std::vector<int>& el);

std::vector<int> Floor(const std::vector<short>& el);

#endif /* FLOOR_HH_ */