aboutsummaryrefslogtreecommitdiffhomepage
path: root/absl/strings/substitute.h
diff options
context:
space:
mode:
authorGravatar Abseil Team <absl-team@google.com>2018-01-02 08:53:02 -0800
committerGravatar Jon Cohen <cohenjon@google.com>2018-01-02 21:13:23 -0500
commit6365d1744b405cec48317e9597a80533acab0798 (patch)
tree3bb2c3dd55d5f0e4a0aeadd02c8a306eb40f11f3 /absl/strings/substitute.h
parenteb5bbdda6cdc303f3d995254c307437733a1c147 (diff)
Changes imported from Abseil "staging" branch:
- d1a8e5ddbf9f96a4ca020260b21e03820c5ff966 Remove references to the non-existing StringPrintf API to... by Abseil Team <absl-team@google.com> - 64a422bc1620b29247a81fab2b08a7f23dfc1461 Add a copy and move constructor to FixedArray. This does... by Jon Cohen <cohenjon@google.com> GitOrigin-RevId: d1a8e5ddbf9f96a4ca020260b21e03820c5ff966 Change-Id: I4388bdf1260702f2847307abbac4bf265e8cf90f
Diffstat (limited to 'absl/strings/substitute.h')
-rw-r--r--absl/strings/substitute.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/absl/strings/substitute.h b/absl/strings/substitute.h
index 76d6d8e..5596a5d 100644
--- a/absl/strings/substitute.h
+++ b/absl/strings/substitute.h
@@ -45,17 +45,6 @@
// SubstituteAndAppend(&s, "My name is $0 and I am $1 years old.", "Bob", 5);
// EXPECT_EQ("Hi. My name is Bob and I am 5 years old.", s);
//
-// Differences from `StringPrintf()`:
-// * The format std::string does not identify the types of arguments. Instead, the
-// arguments are implicitly converted to strings. See below for a list of
-// accepted types.
-// * Substitutions in the format std::string are identified by a '$' followed by a
-// single digit. You can use arguments out-of-order and use the same
-// argument multiple times.
-// * A '$$' sequence in the format std::string means output a literal '$'
-// character.
-// * `Substitute()` is significantly faster than `StringPrintf()`. For very
-// large strings, it may be orders of magnitude faster.
//
// Supported types:
// * absl::string_view, std::string, const char* (null is equivalent to "")
@@ -157,8 +146,7 @@ class Arg {
Arg(bool value) // NOLINT(runtime/explicit)
: piece_(value ? "true" : "false") {}
// `void*` values, with the exception of `char*`, are printed as
- // `StringPrintf()` with format "%p": e.g. ("0x<hex value>").
- // However, in the case of `nullptr`, "NULL" is printed.
+ // "0x<hex value>". However, in the case of `nullptr`, "NULL" is printed.
Arg(const void* value); // NOLINT(runtime/explicit)
Arg(const Arg&) = delete;