cdf20caa49
- 43853019b439efb32c79d5d50e24508588e1bbe0 Undo the not applying qualifications to absl types in enc... by Derek Mauro <dmauro@google.com> - 06d62a10621c9864279ee57097069cfe3cb7b42a fix capitalization by Abseil Team <absl-team@google.com> - 22adbfee340bb452ba38b68975ade6f072859c4a Fix indices in str_split.h comments. by Derek Mauro <dmauro@google.com> - ae5143a559ad8633a78cd76620e30a781006d088 Fix the inconsistent licenses directives in the BUILD fil... by Derek Mauro <dmauro@google.com> - 0a76a3653b2ecfdad433d3e2f5b651c4ecdcf74b Remove strip.cc, fastmem.h, and fastmem_test.cc from the ... by Derek Mauro <dmauro@google.com> - 77908cfce5927aabca1f8d62481106f22cfc1936 Internal change. by Derek Mauro <dmauro@google.com> - d3277b4171f37e22ab346becb5e295c36c7a0219 Be consistent in (not) applying qualifications for enclos... by Abseil Team <absl-team@google.com> - 9ec7f8164e7d6a5f64288a7360a346628393cc50 Add std:: qualification to isnan and isinf in duration_te... by Derek Mauro <dmauro@google.com> - 9f7c87d7764ddba05286fabca1f4f15285f3250a Fix typos in string_view comments. by Abseil Team <absl-team@google.com> - 281860804f8053143d969b99876e3dbc6deb1236 Fix typo in container.h docs. by Abseil Team <absl-team@google.com> - 0b0a9388c7a9d7f72349d44b5b46132f45bde56c Add bazel-* symlinks to gitignore. by Michael Pratt <mpratt@google.com> GitOrigin-RevId: 43853019b439efb32c79d5d50e24508588e1bbe0 Change-Id: I9e74a5430816a34ecf1acb86486ed3b0bd12a1d6 |
||
---|---|---|
absl | ||
.gitignore | ||
ABSEIL_ISSUE_TEMPLATE.md | ||
AUTHORS | ||
CONTRIBUTING.md | ||
LICENSE | ||
README.md | ||
WORKSPACE |
Abseil - C++ Common Libraries
The repository contains the Abseil C++ library code. Abseil is an open-source collection of C++ code (compliant to C++11) designed to augment the C++ standard library.
Table of Contents
About Abseil
Abseil is an open-source collection of C++ library code designed to augment the C++ standard library. The Abseil library code is collected from Google's own C++ code base, has been extensively tested and used in production, and is the same code we depend on in our daily coding lives.
In some cases, Abseil provides pieces missing from the C++ standard; in others, Abseil provides alternatives to the standard for special needs we've found through usage in the Google code base. We denote those cases clearly within the library code we provide you.
Abseil is not meant to be a competitor to the standard library; we've just found that many of these utilities serve a purpose within our code base, and we now want to provide those resources to the C++ community as a whole.
Codemap
Abseil contains the following C++ library components:
base
Abseil Fundamentals
Thebase
library contains initialization code and other code which all other Abseil code depends on. Code withinbase
may not depend on any other code (other than the C++ standard library).algorithm
Thealgorithm
library contains additions to the C++<algorithm>
library and container-based versions of such algorithms.container
Thecontainer
library contains additional STL-style containers.debugging
Thedebugging
library contains code useful for enabling leak checks. Future updates will add stacktrace and symbolization utilities.memory
Thememory
library contains C++11-compatible versions ofstd::make_unique()
and related memory management facilities.meta
Themeta
library contains C++11-compatible versions of type checks available within C++14 and C++17 versions of the C++<type_traits>
library.numeric
Thenumeric
library contains C++11-compatible 128-bit integers.strings
Thestrings
library contains a variety of strings routines and utilities, including a C++11-compatible version of the C++17std::string_view
type.synchronization
Thesynchronization
library contains concurrency primitives (Abseil'sabsl::Mutex
class, an alternative tostd::mutex
) and a variety of synchronization abstractions.time
Thetime
library contains abstractions for computing with absolute points in time, durations of time, and formatting and parsing time within time zones.types
Thetypes
library contains non-container utility types, like a C++11-compatible version ofabsl::optional
.
License
The Abseil C++ library is licensed under the terms of the Apache license. See LICENSE for more information.
Links
For more information about Abseil:
- Consult our Abseil Introduction
- Read Why Adopt Abseil to understand our design philosophy.
- Peruse our Abseil Compatibility Guarantees to understand both what we promise to you, and what we expect of you in return.
Disclaimer
- This is not an official Google product.