NullableNumExtensions extension

Provides an extension method for num that is nullable.

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

on

Properties

isEmpty bool

Available on num?, provided by the NullableNumExtensions extension

Returns true if num is null or 0.
no setter
isNotEmpty bool

Available on num?, provided by the NullableNumExtensions extension

Returns true if num is not Null or 0.
no setter

Methods

toStringWithCommas(int fractionDigits) String

Available on num?, provided by the NullableNumExtensions extension

Converts to comma-delimited strings used for currency and other purposes.

Operators

operator %(num? other) num?

Available on num?, provided by the NullableNumExtensions extension

Performs remainder operations on nullable num values.
operator *(num? other) num?

Available on num?, provided by the NullableNumExtensions extension

Performs multiplication by a nullable num value.
operator +(num? other) num?

Available on num?, provided by the NullableNumExtensions extension

Performs addition with a nullable num value.
operator -(num? other) num?

Available on num?, provided by the NullableNumExtensions extension

Performs subtraction with a nullable num value.
operator /(num? other) double?

Available on num?, provided by the NullableNumExtensions extension

Performs division by a nullable num value.
operator ~/(num? other) int?

Available on num?, provided by the NullableNumExtensions extension

Performs truncated division by a nullable num value.