Created
November 11, 2015 03:37
Revisions
-
martindevans created this gist
Nov 11, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ struct Key : KeyTrait<ValueType> // ^ ^ Type of the value this key supplies // | Implement a trait indicating this is a key { } //usage Key k = whatever(); //Get a key object var value = dict.get(k); // ^ Type of "value" is whatever the associated type "ValueType" is for the type "Key"