Character

struct Character : ExpressibleByExtendedGraphemeClusterLiteral, Hashable
  • Converts Character to String //TODO: Add to readme

    Declaration

    Swift

    public var toString: String
  • If the character represents an integer that fits into an Int, returns the corresponding integer.

    Declaration

    Swift

    public var toInt: Int?
  • Convert the character to lowercase

    Declaration

    Swift

    public var lowercased: Character
  • Convert the character to uppercase

    Declaration

    Swift

    public var uppercased: Character