src/HOL/SPARK/Examples/RIPEMD-160/wordops.adb
author wenzelm
Mon, 11 Sep 2023 19:30:48 +0200
changeset 78659 b5f3d1051b13
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;