Created
April 1, 2016 15:50
-
-
Save yannick/7fe45bf0fea86610fdca6217d1badabf to your computer and use it in GitHub Desktop.
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 characters
| alias ColumnName = string; | |
| HLLMap[ColumnName] counters; | |
| alias HashOfTags = string; | |
| alias HLLMap = HLLWrapper[HashOfTags]; | |
| //HLLWrapper is a Class | |
| if (! (cnt.columnName in counters)) | |
| { | |
| counters[cnt.columnName] = [tags: new HLLWrapper()]; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment