mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
19 lines
399 B
Dart
19 lines
399 B
Dart
extension SignedString on num {
|
|
String toStringSigned() {
|
|
if (this > 0) {
|
|
return "+${toString()}";
|
|
} else {
|
|
return toString();
|
|
}
|
|
}
|
|
}
|
|
|
|
extension SignedStringDouble on double {
|
|
String toStringSignedAsFixed(int fractionDigits) {
|
|
if (this > 0) {
|
|
return "+${toStringAsFixed(fractionDigits)}";
|
|
} else {
|
|
return toStringAsFixed(fractionDigits);
|
|
}
|
|
}
|
|
}
|