Esempio n. 1
0
 static int IBinaryInteger <int> .RotateRight(int value, int rotateAmount)
 => (int)BitOperations.RotateRight((uint)value, rotateAmount);
Esempio n. 2
0
 /// <inheritdoc cref="IBinaryInteger{TSelf}.RotateRight(TSelf, int)" />
 public static long RotateRight(long value, int rotateAmount) => (long)BitOperations.RotateRight((ulong)value, rotateAmount);
Esempio n. 3
0
 static uint IBinaryInteger <uint> .RotateRight(uint value, int rotateAmount)
 => BitOperations.RotateRight(value, rotateAmount);
Esempio n. 4
0
 /// <inheritdoc cref="IBinaryInteger{TSelf}.RotateRight(TSelf, int)" />
 public static uint RotateRight(uint value, int rotateAmount) => BitOperations.RotateRight(value, rotateAmount);
Esempio n. 5
0
 /// <inheritdoc cref="IBinaryInteger{TSelf}.RotateRight(TSelf, int)" />
 public static int RotateRight(int value, int rotateAmount) => (int)BitOperations.RotateRight((uint)value, rotateAmount);
Esempio n. 6
0
 static ulong IBinaryInteger <ulong> .RotateRight(ulong value, int rotateAmount)
 => BitOperations.RotateRight(value, rotateAmount);
Esempio n. 7
0
 static long IBinaryInteger <long> .RotateRight(long value, int rotateAmount)
 => (long)BitOperations.RotateRight((ulong)value, rotateAmount);
Esempio n. 8
0
 /// <inheritdoc cref="IBinaryInteger{TSelf}.RotateRight(TSelf, int)" />
 public static ulong RotateRight(ulong value, int rotateAmount) => BitOperations.RotateRight(value, rotateAmount);