wc_cart_round_discount()WC 1.0

Round discount.

No Hooks.

Returns

float.

Usage

wc_cart_round_discount( $value, $precision );
$value(double) (required)
Amount to round.
$precision(int) (required)
DP to round.

wc_cart_round_discount() code WC 10.8.1

function wc_cart_round_discount( $value, $precision ) {
	return wc_round_discount( $value, $precision );
}