View source code
							
							
						
								Display the source code in std/experimental/allocator/showcase.d from which this
								page was generated on github.
							
						
							Report a bug
							
						
								If you spot a problem with this page, click here to create a
								Bugzilla 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 using
								local clone.
							
						Module std.experimental.allocator.showcase
Collection of typical and useful prebuilt allocators using the given components. User code would typically import this module and use its facilities, or import individual heap building blocks and assemble them.
Functions
| Name | Description | 
|---|---|
| 
									mmapRegionList(bytesPerRegion)
								 | Creates a scalable AllocatorListofRegions, each having at leastbytesPerRegionbytes. Allocation is very fast. This allocator does not offerdeallocatebut does free all regions in its destructor. It is recommended for
short-lived batch applications that count on never running out of memory. | 
Aliases
| Name | Type | Description | 
|---|---|---|
| StackFront | FallbackAllocator!(InSituRegion!(stackSize,Allocator.alignment),Allocator) | Allocator that uses stack allocation for up to stackSizebytes and
then falls back toAllocator. Defined as: | 
Authors
License
					Copyright © 1999-2022 by the D Language Foundation | Page generated by ddox.