1 implementation of TrailingZeroCount
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1175static char IBinaryInteger<char>.TrailingZeroCount(char value) => (char)(BitOperations.TrailingZeroCount(value << 16) - 16);
16 references to TrailingZeroCount
System.Numerics.Tensors (2)
System\Numerics\Tensors\netcore\TensorOperation.cs (1)
2094destination = T.TrailingZeroCount(x);
System\Numerics\Tensors\netcore\TensorPrimitives.TrailingZeroCount.cs (1)
34public static T Invoke(T x) => T.TrailingZeroCount(x);
System.Private.CoreLib (13)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
293/// <inheritdoc cref="IBinaryInteger{TSelf}.TrailingZeroCount(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1174/// <inheritdoc cref="IBinaryInteger{TSelf}.TrailingZeroCount(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
745/// <inheritdoc cref="IBinaryInteger{TSelf}.TrailingZeroCount(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
296/// <inheritdoc cref="IBinaryInteger{TSelf}.TrailingZeroCount(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
315/// <inheritdoc cref="IBinaryInteger{TSelf}.TrailingZeroCount(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
312/// <inheritdoc cref="IBinaryInteger{TSelf}.TrailingZeroCount(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
317/// <inheritdoc cref="IBinaryInteger{TSelf}.TrailingZeroCount(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
299/// <inheritdoc cref="IBinaryInteger{TSelf}.TrailingZeroCount(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
812/// <inheritdoc cref="IBinaryInteger{TSelf}.TrailingZeroCount(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
290/// <inheritdoc cref="IBinaryInteger{TSelf}.TrailingZeroCount(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
310/// <inheritdoc cref="IBinaryInteger{TSelf}.TrailingZeroCount(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
309/// <inheritdoc cref="IBinaryInteger{TSelf}.TrailingZeroCount(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
313/// <inheritdoc cref="IBinaryInteger{TSelf}.TrailingZeroCount(TSelf)" />
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
3539/// <inheritdoc cref="IBinaryInteger{TSelf}.TrailingZeroCount(TSelf)" />