コード例 #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
ファイル: UInt32.cs プロジェクト: pedrobsaila/runtime
 /// <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);