예제 #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
파일: Byte.cs 프로젝트: vitek-karas/runtime
 /// <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);