generator icon indicating copy to clipboard operation
generator copied to clipboard

Reference implementation of std::generator proposal

Results 4 generator issues
Sort by recently updated
recently updated
newest added

it seems to me like in some situations the allocator would need a destructor of a class named `Alloc` instead of `_Alloc` (as in the template parameter). This replaces it...

compiler report a error at line "167" when compile "nested_test.cpp" file. ``` std::atomic counting_allocator_base::allocatedCount{0}; ``` by test, found lost "#include < atomic>" import in "nested_test.cpp" file ! Could PR fix...

Currently the whole body of the `generator` class is dependent on the `Value` template parameter which means it'll be instantiated for each combination of Ref/Value/Allocator. However, there is a large...