| 366 | explicit IteratorContext(Params params) : params_(std::move(params)) {} |
| 367 | |
| 368 | Allocator* allocator(AllocatorAttributes attrs) { |
| 369 | return params_.allocator_getter(attrs); |
| 370 | } |
| 371 | |
| 372 | std::function<Allocator*(AllocatorAttributes)> allocator_getter() { |
| 373 | return params_.allocator_getter; |
no test coverage detected