3 implementations of Tau
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1212static decimal IFloatingPointConstants<decimal>.Tau => 6.2831853071795864769252867666m;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
803static double IFloatingPointConstants<double>.Tau => Tau;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
798static float IFloatingPointConstants<float>.Tau => Tau;
12 references to Tau
System.Private.CoreLib (12)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1211/// <inheritdoc cref="IFloatingPointConstants{TSelf}.Tau" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
802/// <inheritdoc cref="IFloatingPointConstants{TSelf}.Tau" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1465/// <inheritdoc cref="IFloatingPointConstants{TSelf}.Tau" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1084/// <inheritdoc cref="IFloatingPointConstants{TSelf}.Tau" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
49get => Create(T.Tau);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1073/// <inheritdoc cref="IFloatingPointConstants{TSelf}.Tau" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (2)
73/// <summary>Gets a new vector with all elements initialized to <see cref="IFloatingPointConstants{TSelf}.Tau" />.</summary> 78get => Create(T.Tau);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (1)
78get => Create(T.Tau);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512.cs (1)
78get => Create(T.Tau);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (1)
51get => Create(T.Tau);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
797/// <inheritdoc cref="IFloatingPointConstants{TSelf}.Tau" />