11# Abseil - C++ Common Libraries
22
33The repository contains the Abseil C++ library code. Abseil is an open-source
4- collection of C++ code (compliant to C++14 ) designed to augment the C++
4+ collection of C++ code (compliant to C++17 ) designed to augment the C++
55standard library.
66
77## Table of Contents
@@ -99,8 +99,8 @@ Abseil contains the following C++ library components:
9999 <br /> The ` memory ` library contains memory management facilities that augment
100100 C++'s ` <memory> ` library.
101101* [ ` meta ` ] ( absl/meta/ )
102- <br /> The ` meta ` library contains compatible versions of type checks
103- available within C++14 and C++17 versions of the C++ ` <type_traits> ` library.
102+ <br /> The ` meta ` library contains type checks
103+ similar to those available in the C++ ` <type_traits> ` library.
104104* [ ` numeric ` ] ( absl/numeric/ )
105105 <br /> The ` numeric ` library contains 128-bit integer types as well as
106106 implementations of C++20's bitwise math functions.
@@ -115,8 +115,7 @@ Abseil contains the following C++ library components:
115115 specifically ` absl::Status ` and ` absl::StatusOr<T> ` .
116116* [ ` strings ` ] ( absl/strings/ )
117117 <br /> The ` strings ` library contains a variety of strings routines and
118- utilities, including a C++14-compatible version of the C++17
119- ` std::string_view ` type.
118+ utilities.
120119* [ ` synchronization ` ] ( absl/synchronization/ )
121120 <br /> The ` synchronization ` library contains concurrency primitives (Abseil's
122121 ` absl::Mutex ` class, an alternative to ` std::mutex ` ) and a variety of
@@ -126,8 +125,7 @@ Abseil contains the following C++ library components:
126125 points in time, durations of time, and formatting and parsing time within
127126 time zones.
128127* [ ` types ` ] ( absl/types/ )
129- <br /> The ` types ` library contains non-container utility types, like a
130- C++14-compatible version of the C++17 ` std::optional ` type.
128+ <br /> The ` types ` library contains non-container utility types.
131129* [ ` utility ` ] ( absl/utility/ )
132130 <br /> The ` utility ` library contains utility and helper code.
133131
0 commit comments