You mean the implementation is faster than the one in C. Because nothing is “faster than C”.
replies(11):
You can contort C to trick it into being fast[1], but it quickly becomes an unmaintainable nightmare so almost nobody does.
1: eg, correct use of restrict, manually creating move semantics, manually creating small string optimizations, etc...