src/HOL/SPARK/Examples/RIPEMD-160/wordops.adb
author wenzelm
Fri, 05 Jul 2013 22:58:24 +0200
changeset 52536 3a35ce87a55c
parent 41561 d1318f3c86ba
permissions -rw-r--r--
tuned signature; tuned comments;

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;