diff options
| author | Nikolaus Gotsche <n@softwarefools.com> | 2018-10-26 13:25:45 +0200 |
|---|---|---|
| committer | Nikolaus Gotsche <n@softwarefools.com> | 2018-10-26 13:25:45 +0200 |
| commit | d06db7af6014e8498672899218a05adf36ab1aa3 (patch) | |
| tree | 1e960093c848ad166beb4a5125655e53b04066de /utils.go | |
| parent | ab0058448abc0f51d0165c0278bdd4878a3f4d13 (diff) | |
Final Framing and Multichoice beatification
Diffstat (limited to 'utils.go')
| -rw-r--r-- | utils.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -220,7 +220,8 @@ func string2FloatArray(in string, delim string) (out []float64) { return } -func string2StringArray(in string, delim string) (out []string) { +// Takes a String and Cuts it into []string elements by delim +func String2StringArray(in string, delim string) (out []string) { read := strings.Split(in, delim) for _, s := range read { out = append(out, s) |
