#include <iostream>
#include <vector>
#include "Math_func/function.h"
Go to the source code of this file.
|
std::ostream & | operator<< (std::ostream &os, const Math_func::function &func) |
|
template<typename T > |
void | print (const std::vector< T > &v) |
| Выводит все элементы вектора в консоль
|
|
◆ operator<<()
- Returns
- std::ostream&: поток, в который вывели мат. функцию в виде строки
- Parameters
-
os | поток типа std::ostream |
func | мат. функция |
17 {
18 return os << func.get_func_str();
19}
◆ print()
template<typename T >
void print |
( |
const std::vector< T > & | v | ) |
|
Выводит все элементы вектора в консоль
- Template Parameters
-
T | тип, у которого определена операция вывода |
- Parameters
-
27 {
28 cout << " size: " << v.size() << endl;
29 cout << "{ ";
30 for (size_t i = 0; i < v.size(); i++) {
31 cout << "''" << v[i] << "''";
32 if (i != v.size() - 1) cout << endl;
33 }
34 cout << " }" << endl;
35}