#ifndef TRY_SPLIT_SEQUENCE_H #define TRY_SPLIT_SEQUENCE_H #include <optional> #include <string_view> #include <utility> std::optional<std::pair<std::string_view, std::string_view>> TrySplitSequence(const std::string_view &sequence); #endif