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