Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Created April 18, 2017 16:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deque-blog/3c58db7b91a175a805604fea366b9b8d to your computer and use it in GitHub Desktop.
Save deque-blog/3c58db7b91a175a805604fea366b9b8d to your computer and use it in GitHub Desktop.
auto words_gen = string_gen(10, letter_gen());
auto coord_1d_gen = double_gen(-10, 10);
auto coord_3d_gen = tuple_gen(coord_1d_gen, coord_1d_gen, coord_1d_gen);
auto string_to_coord_gen = unordered_map_gen(10, words_gen, coord_3d_gen);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment