template <class... Args> T& Create(const Args&... args) { if(items >= alloc) GrowF(); return *(::new(Rdd()) T(args...)); } template <class... Args> T& Create(Args&&... args) { if(items >= alloc) GrowF(); return *(::new(Rdd()) T(pick(args)...)); }
Report message to a moderator