From 239d05fac630bd8a8ea45ae0b39e7f47c7bb4573 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Fri, 13 Mar 2020 01:36:50 -0700 Subject: [PATCH] Add Arc and shared_ptr to tbd table Closes #18. --- README.md | 2 ++ src/lib.rs | 2 ++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index 41639c23..801c14d9 100644 --- a/README.md +++ b/README.md @@ -319,9 +319,11 @@ matter of designing a nice API for each in its non-native language. Vec<T>tbd BTreeMap<K, V>tbd HashMap<K, V>tbd +Arc<T>tbd tbdstd::vector<T> tbdstd::map<K, V> tbdstd::unordered_map<K, V> +tbdstd::shared_ptr<T>
diff --git a/src/lib.rs b/src/lib.rs index 21d6a8bd..14cc0cbf 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -323,9 +323,11 @@ //! Vec<T>tbd //! BTreeMap<K, V>tbd //! HashMap<K, V>tbd +//! Arc<T>tbd //! tbdstd::vector<T> //! tbdstd::map<K, V> //! tbdstd::unordered_map<K, V> +//! tbdstd::shared_ptr<T> //! //! //! [https://github.com/dtolnay/cxx]: https://github.com/dtolnay/cxx