View source code
Display the source code in std/experimental/allocator/building_blocks/segregator.d from which thispage was generated on github.
Report a bug
If you spot a problem with this page, click here to create aBugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.Requires a signed-in GitHub account. This works well for small changes.If you'd like to make larger changes you may want to consider usinglocal clone.

Module std.experimental.allocator.building_blocks.segregator

Structs

NameDescription
Segregator Dispatches allocations (and deallocations) between two allocators (SmallAllocator and LargeAllocator) depending on the size allocated, as follows. All allocations smaller than or equal to threshold will be dispatched to SmallAllocator. The others will go to LargeAllocator.

Aliases

NameTypeDescription
Segregator Segregator!(Args[cutPoint],.Segregator!(Args[0..cutPoint],Args[cutPoint+1]),.Segregator!(Args[cutPoint+2..__dollar])) A Segregator with more than three arguments expands to a composition of elemental Segregators, as illustrated by the following example:

Authors

License