示例#1
0
文件: Int32.cs 项目: mateoatr/runtime
 static int IBinaryInteger <int> .TrailingZeroCount(int value)
 => BitOperations.TrailingZeroCount(value);
示例#2
0
 /// <inheritdoc cref="IBinaryInteger{TSelf}.TrailingZeroCount(TSelf)" />
 public static long TrailingZeroCount(long value) => BitOperations.TrailingZeroCount(value);
示例#3
0
 static uint IBinaryInteger <uint> .TrailingZeroCount(uint value)
 => (uint)BitOperations.TrailingZeroCount(value);
示例#4
0
 static ushort IBinaryInteger <ushort> .TrailingZeroCount(ushort value)
 => (ushort)(BitOperations.TrailingZeroCount(value << 16) - 16);
示例#5
0
 /// <inheritdoc cref="IBinaryInteger{TSelf}.TrailingZeroCount(TSelf)" />
 public static uint TrailingZeroCount(uint value) => (uint)BitOperations.TrailingZeroCount(value);
示例#6
0
 /// <inheritdoc cref="IBinaryInteger{TSelf}.TrailingZeroCount(TSelf)" />
 public static byte TrailingZeroCount(byte value) => (byte)(BitOperations.TrailingZeroCount(value << 24) - 24);
示例#7
0
 static byte IBinaryInteger <byte> .TrailingZeroCount(byte value)
 => (byte)(BitOperations.TrailingZeroCount(value << 24) - 24);
示例#8
0
 /// <inheritdoc cref="IBinaryInteger{TSelf}.TrailingZeroCount(TSelf)" />
 public static short TrailingZeroCount(short value) => (byte)(BitOperations.TrailingZeroCount(value << 16) - 16);
示例#9
0
文件: Int32.cs 项目: Maximys/runtime
 /// <inheritdoc cref="IBinaryInteger{TSelf}.TrailingZeroCount(TSelf)" />
 public static int TrailingZeroCount(int value) => BitOperations.TrailingZeroCount(value);
示例#10
0
 static ulong IBinaryInteger <ulong> .TrailingZeroCount(ulong value)
 => (ulong)BitOperations.TrailingZeroCount(value);
示例#11
0
文件: Int64.cs 项目: PRIMETSS/runtime
 static long IBinaryInteger <long> .TrailingZeroCount(long value)
 => BitOperations.TrailingZeroCount(value);
示例#12
0
 /// <inheritdoc cref="IBinaryInteger{TSelf}.TrailingZeroCount(TSelf)" />
 public static ulong TrailingZeroCount(ulong value) => (ulong)BitOperations.TrailingZeroCount(value);
示例#13
0
 static short IBinaryInteger <short> .TrailingZeroCount(short value)
 => (byte)(BitOperations.TrailingZeroCount(value << 16) - 16);
示例#14
0
 /// <inheritdoc cref="IBinaryInteger{TSelf}.TrailingZeroCount(TSelf)" />
 public static ushort TrailingZeroCount(ushort value) => (ushort)(BitOperations.TrailingZeroCount(value << 16) - 16);