// // identity.h // stream // // Created by Sam Jaffe on 3/29/23. // #pragma once #include #include namespace stream::detail { struct identity { template decltype(auto) operator()(T && t) const { return std::forward(t); } }; }