]> Joshua Wise's Git repositories - snipe.git/blobdiff - top/mlton-specific.sml
Initial import of l5c
[snipe.git] / top / mlton-specific.sml
diff --git a/top/mlton-specific.sml b/top/mlton-specific.sml
new file mode 100644 (file)
index 0000000..e37b093
--- /dev/null
@@ -0,0 +1,11 @@
+signature SUQ =
+sig
+  val Word32_lsh : Word32.word * Word32.word -> Word32.word
+  val Word32_rsh : Word32.word * Word32.word -> Word32.word
+end
+
+structure Suq :> SUQ =
+struct
+  fun Word32_lsh (a, b) = Word32.<< (a, b)
+  fun Word32_rsh (a, b) = Word32.~>> (a, b)
+end
\ No newline at end of file
This page took 0.024119 seconds and 4 git commands to generate.