1 #ifndef IPFS_SLASH_DELIMITED_H_
2 #define IPFS_SLASH_DELIMITED_H_
8 namespace google::protobuf::internal {
16 std::string_view remainder_;
21 explicit operator bool()
const;
22 std::string_view pop();
23 std::string_view pop_all();
24 std::string_view pop_n(std::size_t);
25 std::string_view peek_back()
const;
26 std::string pop_back();
27 std::string to_string()
const {
return std::string{remainder_}; }
28 std::string_view to_view()
const {
return remainder_; }
33 google::protobuf::internal::LogMessage& operator<<(
34 google::protobuf::internal::LogMessage&,
Definition: slash_delimited.h:15