Blame view

src/ExternLib/vector_/vector_.hh 626 Bytes
5d85642a   Benjamin Renard   Add vector functi...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
 * vector_.hh
 *
 *  Created on: 08 sep. 2020
 *      Author: AKKA IS
 */

#ifndef VECTOR_HH_
#define VECTOR_HH_

#include <vector>

std::vector<int> vector_(const int& comp1, const int& comp2, const int& comp3);

std::vector<double> vector_(const double& comp1, const double& comp2, const double& comp3);

std::vector<long double> vector_(const long double& comp1, const long double& comp2, const long double& comp3);

std::vector<short> vector_(const short& comp1, const short& comp2, const short& comp3);

std::vector<float> vector_(const float& comp1, const float& comp2, const float& comp3);

#endif /* VECTOR_HH_ */