Contents

scientific

A notation constant that formats values with scientific notation.

Declaration

static var scientific: NumberFormatStyleConfiguration.Notation { get }

Discussion

The following example shows the effect of using scientific notation with a format style:

let scientific = 12345.formatted(.number
    .notation(.scientific)) // 1.2345E4"

See Also

Notations