src/HOL/SPARK/Examples/RIPEMD-160/wordops.adb
author wenzelm
Tue, 09 Apr 2013 20:34:15 +0200
changeset 51664 080ef458f21a
parent 41561 d1318f3c86ba
permissions -rw-r--r--
public Isabelle_Process.xml_cache (thread-safe); cache derived status messages;

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;