]> Joshua Wise's Git repositories - snipe.git/blob - top/mlton-specific.sml
Initial import of l5c
[snipe.git] / top / mlton-specific.sml
1 signature SUQ =
2 sig
3   val Word32_lsh : Word32.word * Word32.word -> Word32.word
4   val Word32_rsh : Word32.word * Word32.word -> Word32.word
5 end
6
7 structure Suq :> SUQ =
8 struct
9   fun Word32_lsh (a, b) = Word32.<< (a, b)
10   fun Word32_rsh (a, b) = Word32.~>> (a, b)
11 end
This page took 0.017358 seconds and 4 git commands to generate.