views:

27

answers:

3

Here is an easy question: I have a struct which contains two hash tables and one vector. Im looking for a generic name for this kind of structure. Any suggestions? say factory?

+2  A: 

Name it based on what it does. No point in naming based on what it is made up of

Midhat
+1  A: 

MatchingDataObject

Midhat
+1  A: 

You could call it "MatchingTuple" since that is what it appears to be, a tuple of data structures.

Brandon