Skip to content

Commit

Permalink
feat: ToSting utils
Browse files Browse the repository at this point in the history
  • Loading branch information
sibvic committed Sep 5, 2024
1 parent f8c1aee commit 7fdb721
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
10 changes: 10 additions & 0 deletions snippets/Utils/ToString.mqh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// Conversion to string v1.1

string ToString(double value, string format)
{
return DoubleToString(value);
}
string ToString(double value)
{
return DoubleToString(value);
}
3 changes: 3 additions & 0 deletions snippets/Utils/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## ToString

Helper functions for conversion to string

0 comments on commit 7fdb721

Please sign in to comment.