blob: 6cec98d4e435a174afe4543691b906ab953387f3 [file]
// generated by diplomat-tool
// dart format off
part of 'lib.g.dart';
/// The sign of a Decimal, as shown in formatting.
///
/// See the [Rust documentation for `Sign`](https://docs.rs/fixed_decimal/0.7.0/fixed_decimal/enum.Sign.html) for more information.
enum DecimalSign {
/// No sign (implicitly positive, e.g., 1729).
none,
/// A negative sign, e.g., -1729.
negative,
/// An explicit positive sign, e.g., +1729.
positive;
}
// dart format on