[][src]Function steel_cent::formatting::france_style

pub fn france_style() -> &'static FormatSpec

A format for France, using the Euro symbol in place of "EUR."

assert_eq!("1\u{a0}234,56\u{a0}€",
           format(france_style(), &Money::of_minor(EUR, 123456)));
assert_eq!("1\u{a0}234,56\u{a0}GBP",
           format(france_style(), &Money::of_minor(GBP, 123456)));
assert_eq!("-1\u{a0}234,56\u{a0}€",
           format(france_style(), &Money::of_minor(EUR, -123456)));