An insertation operator is an operator used to feed values into streams.
Example
std::cout << "HELLO INTERNET!";
Compound insertations
You can feed an insertation into another insertation
std::cout << "hello" << " " << "world"; // prints 'hello world'