Lines Matching +full:docs +full:- +full:base
1 # Abseil - C++ Common Libraries
3 The repository contains the Abseil C++ library code. Abseil is an open-source
9 - [About Abseil](#about)
10 - [Quickstart](#quickstart)
11 - [Building Abseil](#build)
12 - [Codemap](#codemap)
13 - [License](#license)
14 - [Links](#links)
19 Abseil is an open-source collection of C++ library code designed to augment
21 own C++ code base, has been extensively tested and used in production, and
26 we've found through usage in the Google code base. We denote those cases
31 base, and we now want to provide those resources to the C++ community as
38 [Abseil Quickstart](https://abseil.io/docs/cpp/quickstart). The Quickstart
47 and compilers. See the [quickstart](https://abseil.io/docs/cpp/quickstart) for
58 * [`base`](absl/base/) Abseil Fundamentals
59 <br /> The `base` library contains initialization code and other code which
60 all other Abseil code depends on. Code within `base` may not depend on any
64 library and container-based versions of such algorithms.
66 <br /> The `container` library contains additional STL-style containers,
75 <br /> The `memory` library contains C++11-compatible versions of
78 <br /> The `meta` library contains C++11-compatible versions of type checks
81 <br /> The `numeric` library contains C++11-compatible 128-bit integers.
84 utilities, including a C++11-compatible version of the C++17
95 <br /> The `types` library contains non-container utility types, like a
96 C++11-compatible version of the C++17 `std::optional` type.