NullableDoubleExtensions extension

Provides an extension method for double that is nullable.

Nullableなdouble用の拡張メソッドを提供します。

on

Properties

isEmpty bool
Returns true if double is null or 0.
no setter
isNotEmpty bool
Returns true if double is not Null or 0.
no setter

Operators

operator %(num? other) double?
Performs remainder operations on nullable double values.
operator *(num? other) double?
Performs multiplication by a nullable double value.
operator +(num? other) double?
Performs addition with a nullable double value.
operator -(num? other) double?
Performs subtraction with a nullable double value.
operator /(num? other) double?
Performs division by a nullable double value.
operator ~/(num? other) int?
Performs truncated division by a nullable double value.