3 implementations of Tau
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1242static decimal IFloatingPointConstants<decimal>.Tau => 6.2831853071795864769252867666m;
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
787static double IFloatingPointConstants<double>.Tau => Tau;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
784static float IFloatingPointConstants<float>.Tau => Tau;
12 references to Tau
System.Private.CoreLib (12)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1241/// <inheritdoc cref="IFloatingPointConstants{TSelf}.Tau" />
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
786/// <inheritdoc cref="IFloatingPointConstants{TSelf}.Tau" />
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1425/// <inheritdoc cref="IFloatingPointConstants{TSelf}.Tau" />
src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1084/// <inheritdoc cref="IFloatingPointConstants{TSelf}.Tau" />
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
48get => Create(T.Tau);
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1146/// <inheritdoc cref="IFloatingPointConstants{TSelf}.Tau" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (2)
72/// <summary>Gets a new vector with all elements initialized to <see cref="IFloatingPointConstants{TSelf}.Tau" />.</summary> 77get => Create(T.Tau);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (1)
77get => Create(T.Tau);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512.cs (1)
76get => Create(T.Tau);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (1)
49get => Create(T.Tau);
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
783/// <inheritdoc cref="IFloatingPointConstants{TSelf}.Tau" />