3 references to RootNDecimalIeee754
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
1046
public static Decimal128 RootN(Decimal128 x, int n) => new Decimal128(Number.
RootNDecimalIeee754
<Decimal128, UInt128>(new UInt128(x._upper, x._lower), n));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
1057
public static Decimal32 RootN(Decimal32 x, int n) => new Decimal32(Number.
RootNDecimalIeee754
<Decimal32, uint>(x._value, n));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
1050
public static Decimal64 RootN(Decimal64 x, int n) => new Decimal64(Number.
RootNDecimalIeee754
<Decimal64, ulong>(x._value, n));