MkTripleElt
functorfunctor MkTripleElt (
structure EltA :
ELEMENT
structure EltB :
ELEMENT
structure EltC :
ELEMENT
sharing EltA.Hashing = EltB.Hashing = EltC.Hashing
):
ELEMENT
where type t = EltA.t * EltB.t * EltC.t =
MkTripleElt
Cost SpecificationWork | Span | |
equal ((A1,A2,A3),(B1,B2,B3))
|
O(Wequal(A1,B1)+Wequal(A2,B2)+Wequal(A3,B3)) | O(max(Sequal(A1,B1),Sequal(A2,B2),Sequal(A3,B3))) |
compare ((A1,A2,A3),(B1,B2,B3)) |
O(Wcompare(A1,B1)+Wcompare(A2,B2)+Wcompare(A3,B3)) | O(max(Scompare(A1,B1),Scompare(A2,B2),Scompare(A3,B3))) |
hash (A1,A2,A3) |
O(Whash(A1)+Whash(A2)+Whash(A3)) | O(Shash(A1)+Shash(A2)+Shash(A3)) |
toString (A1,A2,A3) |
O(WtoString(A1)+WtoString(A2)+WtoString(A3)) | O(max(StoString(A1),StoString(A2),StoString(A3))) |