// // any_of.h // string-utils // // Created by Sam Jaffe on 2/13/21. // Copyright © 2021 Sam Jaffe. All rights reserved. // #pragma once #include namespace string_utils { template bool any_of(std::string_view value, Ts const&... rest) { return ((value == rest) || ...); } }