API
String
Functions for working with strings in Squiggle
Strings support all JSON escape sequences, with addition of escaped single-quotes (for single-quoted strings)
make
Converts any value to a string. Some information is often lost.
String.make(any) => String
concat
Namespace optional
String.concat(String, String) => String
String.concat(String, any) => String
add
infix: +
Namespace optional
String.add(String, String) => String
String.add(String, any) => String
split
String.split(String, String) => List(String)