#pragma once namespace arti::lang { template struct OverloadSet : Ts... { using Ts::operator()...; }; template OverloadSet(Ts...) -> OverloadSet; }