add container v_multiset

This commit is contained in:
chatlanin
2022-03-02 12:11:21 +03:00
parent 3148ecd29e
commit 9d3c2a4153
14 changed files with 72 additions and 12 deletions

View File

@@ -7,7 +7,6 @@
TEST(split_str, check)
{
hack::v_str v { "asdf", "qwer", "zxcv" };
ASSERT_EQ(hack::split_str("asdf,qwer,zxcv", ','), v);
std::vector<std::string> v { "asdf", "qwer", "zxcv" };
ASSERT_EQ(hack::string::split_str("asdf,qwer,zxcv", ','), v);
}