Template:cpp/container/hinted insert note
From cppreference.com
The hinted insert
(3,4)
does not return a boolean in order to be signature-compatible with positional insert on sequential containers, such as std::vector::insert. This makes it possible to create generic inserters such as std::inserter. One way to check success of a hinted insert is to compare size()
before and after.