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