From 2a62fbdedf64673f7c858bc6487bd15bcd2ca180 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Mon, 25 Sep 2017 15:35:12 -0700 Subject: Changes imported from Abseil "staging" branch: - 76fcc6eebc6a5b5a885f04e1579762573c2bf9bc Fix broken links, and remove old README files from Git. by Daniel Katz - 174287df7bc7c1832fe4a66d82ee0f61a8788460 Remove "test_dependencies.bzl" file. Not needed. by Daniel Katz - 4e9416b389e61f5258c3a7fc0f7966f03d9ae086 Fix broken about/intro link in README.md by Abseil Team - 2a662ff187987246cf8f3c1de83eaa23f1d2c034 Delete extraneous comments. by Abseil Team - 3bdc2d15af21e0297ccf39c90c0ed51a35900679 Cleanup usage of GUNIT_DEPS_SELECTOR/GUNIT_MAIN_DEPS_SELE... by Gennadiy Rozental - bec32fc8efee3ae5b67c07dcae08d74540c944d0 Enable time_test on windows: by Xiaoyi Zhang GitOrigin-RevId: 76fcc6eebc6a5b5a885f04e1579762573c2bf9bc Change-Id: I9556164f6b48dae1fa02b2ec6444517faed23e1f --- absl/strings/README.md | 87 -------------------------------------------------- 1 file changed, 87 deletions(-) delete mode 100644 absl/strings/README.md (limited to 'absl/strings/README.md') diff --git a/absl/strings/README.md b/absl/strings/README.md deleted file mode 100644 index d5320eb0..00000000 --- a/absl/strings/README.md +++ /dev/null @@ -1,87 +0,0 @@ -# ABSL Strings - -This directory contains packages related to std::string operations and std::string -alternatives (such as character-agnostic byte manipulation packages). - -## Library Listing - -Two library targets are available within this directory: - -* **strings** (`//absl/strings:strings`) provides classes and - utility functions for manipulating and comparing strings, converting other - types (such as integers) into strings, or evaluating strings for other usages - (such as tokenization). - -* **cord** (`//absl/strings:cord`) provides classes and utility - functions for manipulating `Cord` elements. A `Cord` is a sequence of - characters that internally uses a tree structure to store their data, - avoiding the need for long regions of contiguous memory, and allows memory - sharing, sub-std::string copy-on-write, and a host of other advanced std::string - features. - -## Strings Library File Listing - -The following header files are directly included within the -`absl::strings` library. - -## Alternate std::string-like Classes - -* `bytestream.h` -
Abstraction of std::string for I/O -* `string_view.h` -
Pointer to part or all of another std::string - -## Formatting and Parsing - -* `numbers.h` -
Converter between strings and numbers. Prefer `str_cat.h` for numbers - to strings - -## Operations on Characters - -* `ascii_ctype.h` -
Char classifiers like <ctype.h> but faster -* `charset.h` -
Bitmap from unsigned char -> bool - -## Operations on Strings - -* `case.h` -
Case-changers -* `escaping.h` -
Escapers and unescapers -* `str_join.h` -
Joiner functions using a delimiter -* `str_split.h` -
Split functions -* `str_cat.h` -
Concatenators and appenders -* `string_view_utils.h` -
Utility functions for strings -* `strip.h` -
Character removal functions -* `substitute.h` -
Printf-like typesafe formatter - -## Miscellaneous - -* `util.h` -
Grab bag of useful std::string functions - - -## Cord Library File Listing - -The following header files are directly included within the -`absl::strings::cord` library: - -## The `Cord` Class - -* `cord.h` -
A std::string built from a tree of shareable nodes - -## Operations on Cords - -* `cord_cat.h` -
Concatenator functions for cords -* `cord_util.h` -
Utility functions for cords -- cgit v1.2.3