We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5405ad commit a957905Copy full SHA for a957905
src/Instructions/FunctionsUtils.cpp
@@ -0,0 +1,12 @@
1
+#include "FunctionsUtils.h"
2
+
3
+std::string FPL::Instruction::FunctionUtils::ReturnStringVector(std::vector<std::string> vector) {
4
+ std::stringstream result_STR;
5
+ for (auto it = vector.begin(); it != vector.end(); it++) {
6
+ if (it != vector.begin()) {
7
+ result_STR << " ";
8
+ }
9
+ result_STR << *it;
10
11
+ return result_STR.str();
12
+}
src/Instructions/FunctionsUtils.h
@@ -0,0 +1,11 @@
+#pragma once
+#include <iostream>
+#include <string>
+#include <vector>
+#include <sstream>
+#include "../Essentials/Tokenizer.h"
+namespace FPL::Instruction::FunctionUtils {
+ std::string ReturnStringVector(std::vector<std::string> vector);
0 commit comments