summaryrefslogtreecommitdiffstats
path: root/vendor/cxx/book/src/SUMMARY.md
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/cxx/book/src/SUMMARY.md')
-rw-r--r--vendor/cxx/book/src/SUMMARY.md37
1 files changed, 0 insertions, 37 deletions
diff --git a/vendor/cxx/book/src/SUMMARY.md b/vendor/cxx/book/src/SUMMARY.md
deleted file mode 100644
index a8f89bfc8..000000000
--- a/vendor/cxx/book/src/SUMMARY.md
+++ /dev/null
@@ -1,37 +0,0 @@
-# Summary
-
-- [Rust ❤️ C++](index.md)
-
-- [Core concepts](concepts.md)
-
-- [Tutorial](tutorial.md)
-
-- [Other Rust–C++ interop tools](context.md)
-
-- [Multi-language build system options](building.md)
- - [Cargo](build/cargo.md)
- - [Bazel](build/bazel.md)
- - [CMake](build/cmake.md)
- - [More...](build/other.md)
-
-- [Reference: the bridge module](reference.md)
- - [extern "Rust"](extern-rust.md)
- - [extern "C++"](extern-c++.md)
- - [Shared types](shared.md)
- - [Attributes](attributes.md)
- - [Async functions](async.md)
- - [Error handling](binding/result.md)
-
-- [Reference: built-in bindings](bindings.md)
- - [String — rust::String](binding/string.md)
- - [&str — rust::Str](binding/str.md)
- - [&&#91;T&#93;, &mut &#91;T&#93; &mdash; rust::Slice\<T\>](binding/slice.md)
- - [CxxString &mdash; std::string](binding/cxxstring.md)
- - [Box\<T\> &mdash; rust::Box\<T\>](binding/box.md)
- - [UniquePtr\<T\> &mdash; std::unique\_ptr\<T\>](binding/uniqueptr.md)
- - [SharedPtr\<T\> &mdash; std::shared\_ptr\<T\>](binding/sharedptr.md)
- - [Vec\<T\> &mdash; rust::Vec\<T\>](binding/vec.md)
- - [CxxVector\<T\> &mdash; std::vector\<T\>](binding/cxxvector.md)
- - [*mut T, *const T raw pointers](binding/rawptr.md)
- - [Function pointers](binding/fn.md)
- - [Result\<T\>](binding/result.md)