std::forward_list provides insert_after and erase_after members which may not need to actually access the std::forward_list object. Therefore they can be implemented as static member functions and be called without a list object — useful for an object that wants to delete itself from a list, which is a very common use. EDIT: This optimization only applies to forward_list specializations on std::allocator or user-defined stateless allocators.
Can a standard-conforming implementation do this?
§17.6.5.5/3 says
A call to a member function signature described in the C++ standard library behaves as if the implementation declares no additional member function signatures.
with a footnote
A valid C++ program always calls the expected library member function, or one with equivalent behavior. An implementation may also define additional member functions that would otherwise not be called by a valid C++ program.
It's not clear to me whether adding static would create a "different" member function, but removing an (implicit) argument shouldn't break anything that adding defaulted arguments wouldn't, and that is legal. (You cannot legally take a PTMF to any standard member function.)
It strikes me that the library should be allowed to do this, but I'm not sure if some rule would be broken. And how normative are the listed member function prototypes?
std::allocatorand likewise by the user for their own if desired. – Potatoswatter Oct 19 '11 at 12:10std::allocatorwhich is always stateless. – Potatoswatter Oct 19 '11 at 12:44