Search code examples
sml

Is there a function in sml for converting a list of chars into a string?


I'm wondering if there is a built in function instead of writing the code that would do this.


Solution

  • - implode [#"a", #"b"];
    val it = "ab" : string