| 62 | |
| 63 | template <class NestMap> |
| 64 | NestMap *times_hundred(int n) { |
| 65 | auto *m = new NestMap(); |
| 66 | for (int i = 1; i <= n; i++) { |
| 67 | for (int j = 1; j <= n; j++) { |
| 68 | (*m)[i].emplace(j * 10, E_nc(100 * j)); |
| 69 | } |
| 70 | } |
| 71 | return m; |
| 72 | } |
| 73 | |
| 74 | /* |
| 75 | * Recursive data structures as test for issue #4623 |