View source code
							
							
						
								Display the source code in std/experimental/allocator/building_blocks/scoped_allocator.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.
							
						Struct std.experimental.allocator.building_blocks.scoped_allocator.ScopedAllocator
ScopedAllocator delegates all allocation requests to ParentAllocator.
When destroyed, the ScopedAllocator object automatically calls deallocate for all memory allocated through its lifetime. (The deallocateAll function is also implemented with the same semantics.)
						
				struct ScopedAllocator(ParentAllocator)
				;
						
					
				deallocate is also supported, which is where most implementation effort
and overhead of ScopedAllocator go. If deallocate is not needed, a
simpler design combining AllocatorList with Region is recommended.
Fields
| Name | Type | Description | 
|---|---|---|
| parent | AllocatorList | If ParentAllocatoris stateful,parentis a property giving access
    to anAffixAllocator!ParentAllocator. Otherwise,parentis an alias forAffixAllocator!ParentAllocator. | 
Methods
| Name | Description | 
|---|---|
| allocate | Allocates memory. For management it actually allocates extra memory from the parent. | 
| deallocate | Deallocates b. | 
| deallocateAll | Deallocates all memory allocated. | 
| empty | Returns Ternaryif this allocator is not responsible for any memory,Ternaryotherwise. (Never returnsTernary.) | 
| expand | Forwards to parent. | 
| goodAllocSize | Forwards to parent(which accounts for the management
    overhead). | 
| owns | Forwards to parent. | 
| reallocate | Reallocates bto new sizes. | 
Example
import stdAuthors
License
					Copyright © 1999-2022 by the D Language Foundation | Page generated by ddox.