27void print(
const std::vector<T>& v) {
28 cout <<
" size: " << v.size() << endl;
30 for (
size_t i = 0; i < v.size(); i++) {
31 cout <<
"''" << v[i] <<
"''";
32 if (i != v.size() - 1) cout << endl;
Математическая функция
Definition function.h:14
std::string get_func_str() const
Возвращает значение мат. функции в виде строки
Definition function.h:59
void print(const std::vector< T > &v)
Выводит все элементы вектора в консоль
Definition temp_help.h:27
std::ostream & operator<<(std::ostream &os, const Math_func::function &func)
Definition temp_help.h:16