octal(explicitPositiveSign:includePrefix:uppercase:)
Creates a custom octal format that displays the exact number of digits in the number.
Declaration
static func octal(explicitPositiveSign: Bool = false, includePrefix: Bool = false, uppercase: Bool = false) -> OSLogIntegerFormattingParameters
- explicitPositiveSign:
A Boolean value that indicates whether to display a plus (
+) sign in front of positive integers. - includePrefix:
A Boolean that indicates whether to include a leading
0ofor octal numbers. - uppercase:
A Boolean value that indicates whether to uppercase numerals that are greater than 9.
Return Value
A custom octal format for integers.