Graphic Calculator: FIDocalcus
Проект трёх первокурсников (по инженерному практикуму в первом семестре) по созданию графического калькулятора на FLTK C++
Loading...
Searching...
No Matches
temp_help.h File Reference
#include <iostream>
#include <vector>
#include "Math_func/function.h"
Include dependency graph for temp_help.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const Math_func::function &func)
 
template<typename T >
void print (const std::vector< T > &v)
 Выводит все элементы вектора в консоль
 

Function Documentation

◆ operator<<()

std::ostream & operator<< ( std::ostream & os,
const Math_func::function & func )
inline
Returns
std::ostream&: поток, в который вывели мат. функцию в виде строки
Parameters
osпоток типа std::ostream
funcмат. функция
17 {
18 return os << func.get_func_str();
19}
Here is the call graph for this function:

◆ print()

template<typename T >
void print ( const std::vector< T > & v)

Выводит все элементы вектора в консоль

Template Parameters
Tтип, у которого определена операция вывода
Parameters
vвектор
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}
Here is the caller graph for this function: