mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
9 lines
No EOL
196 B
C++
9 lines
No EOL
196 B
C++
#include "contains.h"
|
|
|
|
bool contains(std::vector<double> tm, double n){
|
|
for (unsigned int i = 0; i < tm.size(); i++){
|
|
if (tm[i] == n)
|
|
return true;
|
|
}
|
|
return false;
|
|
} |