示例#1
0
文件: Int32.cs 项目: mateoatr/runtime
 static int IBinaryInteger <int> .RotateRight(int value, int rotateAmount)
 => (int)BitOperations.RotateRight((uint)value, rotateAmount);
示例#2
0
 /// <inheritdoc cref="IBinaryInteger{TSelf}.RotateRight(TSelf, int)" />
 public static long RotateRight(long value, int rotateAmount) => (long)BitOperations.RotateRight((ulong)value, rotateAmount);
示例#3
0
 static uint IBinaryInteger <uint> .RotateRight(uint value, int rotateAmount)
 => BitOperations.RotateRight(value, rotateAmount);
示例#4
0
 /// <inheritdoc cref="IBinaryInteger{TSelf}.RotateRight(TSelf, int)" />
 public static uint RotateRight(uint value, int rotateAmount) => BitOperations.RotateRight(value, rotateAmount);
示例#5
0
文件: Int32.cs 项目: Maximys/runtime
 /// <inheritdoc cref="IBinaryInteger{TSelf}.RotateRight(TSelf, int)" />
 public static int RotateRight(int value, int rotateAmount) => (int)BitOperations.RotateRight((uint)value, rotateAmount);
示例#6
0
 static ulong IBinaryInteger <ulong> .RotateRight(ulong value, int rotateAmount)
 => BitOperations.RotateRight(value, rotateAmount);
示例#7
0
文件: Int64.cs 项目: PRIMETSS/runtime
 static long IBinaryInteger <long> .RotateRight(long value, int rotateAmount)
 => (long)BitOperations.RotateRight((ulong)value, rotateAmount);
示例#8
0
 /// <inheritdoc cref="IBinaryInteger{TSelf}.RotateRight(TSelf, int)" />
 public static ulong RotateRight(ulong value, int rotateAmount) => BitOperations.RotateRight(value, rotateAmount);