Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.25 KB

README.md

File metadata and controls

36 lines (27 loc) · 1.25 KB

Object-Pool with smart-pointer Build Status

C++ Fast, Static and Generic Object Pool library with smart pointer
This is static object pool library. It mean that object pool has fixed number of object it manages. Client can't add more object after initialization.
Because it is static so there's no malloc and all operators except constructors are noexcept and fast.

#include "pool.hpp"

Pool<int, 6> pool;
auto obj1 = pool.acquire();
if (nullptr != obj.get())
    dosomething(*obj);
else
    throw("no object in pool available");

//with compound type, client can pass parameters for the constructor of containing object
Pool<Foo, 6> pool{args1, args2}

//can also construct it with a range, this is the most useful case.
vector<Foo> vec{Foo{1}, Foo{2});
//each element of the range will be moved to pool, client have to keep track of number himself
Pool<Foo, 2> pool(vec.begin(), vec.end());

//also can construct with initializer list, which will be copied from.
Pool<Foo, 2> pool{Foo{1}, Foo{2}};

//iterate to const element
for(const auto& e: pool)
    cout<<e;