String

struct String
  • String is trivially renderable: it renders to itself.

    Declaration

    Swift

    public func render() -> String
  • String is trivially parsable: it parses to itself.

    Declaration

    Swift

    public static func parse(_ string: String) -> String?

    Parameters

    string

    String to parse.

    Return Value

    string parameter value.