API / Core / Intl / Numberformat

NumberFormat

t

RESCRIPT
type t

make

RESCRIPT
let make: unit => t

makeWithLocale

RESCRIPT
let makeWithLocale: string => t

makeWithLocales

RESCRIPT
let makeWithLocales: array<string> => t

makeWithLocaleAndOptions

RESCRIPT
let makeWithLocaleAndOptions: (string, {..}) => t

makeWithLocalesAndOptions

RESCRIPT
let makeWithLocalesAndOptions: (array<string>, {..}) => t

makeWithOptions

RESCRIPT
let makeWithOptions: {..} => t

supportedLocalesOf

RESCRIPT
let supportedLocalesOf: array<string> => t

supportedLocalesOfWithOptions

RESCRIPT
let supportedLocalesOfWithOptions: (array<string>, {..}) => t

resolvedOptions

RESCRIPT
let resolvedOptions: t => {..}

format

RESCRIPT
let format: (t, float) => string

formatToParts

RESCRIPT
let formatToParts: (t, float) => array<{\"type\": string, \"value\": string}>

formatInt

RESCRIPT
let formatInt: (t, int) => string

formatIntToParts

RESCRIPT
let formatIntToParts: (t, int) => array<{\"type\": string, \"value\": string}>

formatBigInt

RESCRIPT
let formatBigInt: (t, Core__BigInt.t) => string

formatBigIntToParts

RESCRIPT
let formatBigIntToParts: ( t, Core__BigInt.t, ) => array<{\"type\": string, \"value\": string}>