placeholder for documentation of allocator_api library feature.

Alpha-renamed `Allocator` to `Alloc`.
This commit is contained in:
Felix S. Klock II 2017-05-30 17:22:24 +02:00
parent 23ab50455f
commit 57ab9e7e7c

View File

@ -0,0 +1,15 @@
# `allocator_api`
The tracking issue for this feature is [#32838]
[#32838]: https://github.com/rust-lang/rust/issues/32838
------------------------
Sometimes you want the memory for one collection to use a different
allocator than the memory for another collection. In this case,
replacing the global allocator is not a workable option. Instead,
you need to pass in an instance of an `Alloc` to each collection
for which you want a custom allocator.
TBD