From a4352b54531f6ada8ec4a6f6a5c5bf25d338bdd9 Mon Sep 17 00:00:00 2001 From: PraneethJain Date: Wed, 3 Jul 2024 13:50:08 +0530 Subject: [PATCH] doc: available container methods --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 4b897e3..9a1a69d 100644 --- a/README.md +++ b/README.md @@ -961,6 +961,8 @@ You can also further specialize on `T` to get specific behavior depending on th | `StdForwardList` | `std::forward_list` | To be released | | | | | +View [StdLib](./src/StdLib) to check available methods. + To add support for e.g. vectors of your own type `World`, either just add methods that use an `std::vector` as an argument, or manually wrap them using `jlcxx::stl::apply_stl(mod);`. For this to work, add `#include "jlcxx/stl.hpp"` to your C++ file.