src/HOL/SPARK/Examples/RIPEMD-160/wordops.adb
author wenzelm
Sat, 11 Dec 2021 11:24:48 +0100
changeset 74913 c2a2be496f35
parent 41561 d1318f3c86ba
permissions -rw-r--r--
tuned;

package body Wordops is

   function Rotate(I : Rotate_Amount; W : Word) return Word
   is
   begin
      return Interfaces.Rotate_Left (W, I);
   end Rotate;

end Wordops;