Skip to content

Export of internal doc changes to Abseil OSS: #509

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 5, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions about/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type: markdown
# Introduction to Abseil

Welcome to Abseil! Abseil is an open-source collection of C++ code (compliant to
C++14) designed to augment the C++ standard library. This document introduces
C++17) designed to augment the C++ standard library. This document introduces
Abseil and provides an overview of the code we're providing.

## Table of Contents
Expand Down Expand Up @@ -40,16 +40,14 @@ The Abseil codebase consists of the following C++ library components:
<br /> The `memory` library contains memory management facilities that
augment C++'s `<memory>` library.
* [`meta`](https://github.com/abseil/abseil-cpp/tree/master/absl/meta)
<br /> The `meta` library contains compatible versions of type checks
available within C++14 and C++17 versions of the C++ `<type_traits>`
library.
<br /> The `meta` library contains type checks similar to those available in
the C++ `<type_traits>` library.
* [`numeric`](https://github.com/abseil/abseil-cpp/tree/master/absl/numeric)
<br /> The `numeric` library contains 128-bit integer types as well as
implementations of C++20's bitwise math functions.
* [`strings`](https://github.com/abseil/abseil-cpp/tree/master/absl/strings)
<br /> The `strings` library contains a variety of strings routines and
utilities, including a C++14-compatible version of the C++17
`std::string_view` type.
utilities.
* [`synchronization`](https://github.com/abseil/abseil-cpp/tree/master/absl/synchronization)
<br /> The `synchronization` library contains concurrency primitives (Abseil's
`absl::Mutex` class, an alternative to `std::mutex`) and a variety of
Expand All @@ -59,8 +57,7 @@ The Abseil codebase consists of the following C++ library components:
points in time, durations of time, and formatting and parsing time within
time zones.
* [`types`](https://github.com/abseil/abseil-cpp/tree/master/absl/types)
<br /> The `types` library contains non-container utility types, like a
C++14-compatible version of `absl::optional`.
<br /> The `types` library contains non-container utility types.
* [`utility`](https://github.com/abseil/abseil-cpp/tree/master/absl/utility)
<br /> The `utility` library contains utility and helper code.

Expand Down