src/HOL/SPARK/Examples/RIPEMD-160/wordops.adb
author Andreas Lochbihler
Wed, 11 Feb 2015 14:12:30 +0100
changeset 59519 2fb0c0fc62a3
parent 41561 d1318f3c86ba
permissions -rw-r--r--
add more general version of finite_vimageD

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;