Translation of "alloc as" in Polish
We couldn’t find this entry. Showing approximate results. Check your spelling or suggest adding this term to the dictionary.
Constructs the underlying container with the contents of cont using move semantics while utilising alloc as allocator. Effectively calls c(std::move(cont), alloc).
Konstruuje opakowywany kontener przenosząc zawartość cont i używając alloc jako alokatora, tak jak przy wywołaniu c(std::move(cont), alloc).
Constructs the adaptor with the contents of other using move semantics while utilising alloc as allocator. Effectively calls c(std::move(other.c), alloc).
Konstruuje adapter przenosząc zawartość other i używając alloc jako alokatora, tak jak przy wywołaniu c(std::move(other.c), alloc).
Original: Constructs the underlying container with the contents of cont and using alloc as allocator.
Konstruuje opakowywany kontener wykorzystując zawartość cont i używając alloc jako alokatora, tak jak przy wywołaniu c(cont, alloc).
Click here for underlying container using alloc as allocator. Effectively calls c(alloc).
Konstruuje opakowywany kontener wykorzystując alloc jako alokator, tak jak przy wywołaniu c(alloc).
Appelle effectivement c(cont, alloc) . Original: Constructs the underlying container with the contents of cont and using alloc as allocator.
Konstruuje opakowywany kontener wykorzystując zawartość cont i używając alloc jako alokatora, tak jak przy wywołaniu c(cont, alloc).