summaryrefslogtreecommitdiffstats
path: root/vendor/cxx/book/src/SUMMARY.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
commitdc0db358abe19481e475e10c32149b53370f1a1c (patch)
treeab8ce99c4b255ce46f99ef402c27916055b899ee /vendor/cxx/book/src/SUMMARY.md
parentReleasing progress-linux version 1.71.1+dfsg1-2~progress7.99u1. (diff)
downloadrustc-dc0db358abe19481e475e10c32149b53370f1a1c.tar.xz
rustc-dc0db358abe19481e475e10c32149b53370f1a1c.zip
Merging upstream version 1.72.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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&ndash;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 &mdash; rust::String](binding/string.md)
- - [&str &mdash; 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)