add put vector

This commit is contained in:
2025-09-15 11:16:00 +03:00
parent afcaf475fd
commit bfebb74fb7
2 changed files with 6 additions and 3 deletions

View File

@@ -29,12 +29,15 @@ auto main(int argc, char *argv[]) -> int
hack::log()(rb.pop().value());
hack::log()("rb =", rb);
hack::log()("rb:", rb.pop().has_value(), " (пусто...)");
rb.put(v);
hack::log()("rb =", rb);
// identificator
struct id_struct : public hack::patterns::identificator<> {} aa;
id_struct bb;
id_struct cc;
id_struct dd;
hack::log()("identificator:");
hack::log()(aa.get_id(), bb.get_id(), cc.get_id(), dd.get_id());
return 0;