String functions

String::append : String -> String -> String

Append two strings.

Examples

val a = String::append "Hello, " "World!"
//    = "Hello, World!"

String::isEmpty : String -> Boolean

Returns True if a string is the empty string. False otherwise.

Examples

val a = String::isEmpty "abc"
//    = False
val b = String::isEmpty ""
//    = True