auto speedup

I saw some code with this. Can anybody explain the use of it?
I noticed it reduces runtime for similar code.

static auto speedup = [](){
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    std::cout.tie(nullptr);
    return nullptr;
}();
Comments (0)