try_split_sequence.h 243 B

1234567891011
  1. #ifndef TRY_SPLIT_SEQUENCE_H
  2. #define TRY_SPLIT_SEQUENCE_H
  3. #include <optional>
  4. #include <string_view>
  5. #include <utility>
  6. std::optional<std::pair<std::string_view, std::string_view>>
  7. TrySplitSequence(const std::string_view &sequence);
  8. #endif