Stringer implement the string interface
| 2 | |
| 3 | // Stringer implement the string interface |
| 4 | type Stringer interface { |
| 5 | String() string |
| 6 | } |
| 7 | |
| 8 | // SliceJoin concatenates the elements of a to create a single string. The separator string |
| 9 | // sep is placed between elements in the resulting string. |
no outgoing calls
no test coverage detected