Mercurial > urweb
comparison src/triple_key_fn.sml @ 2240:88cc0f44c940
Rename C functions and remove functors nested inside modules.
author | Ziv Scully <ziv@mit.edu> |
---|---|
date | Sun, 19 Jul 2015 19:03:11 -0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
2239:f70a91f7810d | 2240:88cc0f44c940 |
---|---|
1 functor TripleKeyFn (structure I : ORD_KEY | |
2 structure J : ORD_KEY | |
3 structure K : ORD_KEY) | |
4 : ORD_KEY where type ord_key = I.ord_key * J.ord_key * K.ord_key = struct | |
5 | |
6 type ord_key = I.ord_key * J.ord_key * K.ord_key | |
7 | |
8 fun compare ((i1, j1, k1), (i2, j2, k2)) = | |
9 case I.compare (i1, i2) of | |
10 EQUAL => (case J.compare (j1, j2) of | |
11 EQUAL => K.compare (k1, k2) | |
12 | ord => ord) | |
13 | ord => ord | |
14 | |
15 end |