src/HOL/SPARK/Examples/RIPEMD-160/wordops.adb
author blanchet
Tue, 09 Sep 2014 20:51:36 +0200
changeset 58274 4a84e94e58a2
parent 41561 d1318f3c86ba
permissions -rw-r--r--
made datatype realizer plugin work for new-style datatypes with no nesting

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;