View source code
Display the source code in core/stdcpp/string.d from which this page was generated on github.
Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page. Requires a signed-in GitHub account. This works well for small changes. If you'd like to make larger changes you may want to consider using local clone.

core.stdcpp.string.basic_string.replace - multiple declarations

Function basic_string.replace

ref basic_string replace (
  basic_string.size_type pos,
  basic_string.size_type len,
  auto ref basic_string str
);

Function basic_string.replace

ref basic_string replace (
  basic_string.size_type pos,
  basic_string.size_type len,
  auto ref basic_string str,
  basic_string.size_type subpos,
  basic_string.size_type sublen = npos
);

Function basic_string.replace

ref basic_string replace (
  basic_string.size_type pos,
  basic_string.size_type len,
  const(basic_string.value_type)[] s
);

ref basic_string replace (
  basic_string.size_type pos,
  basic_string.size_type len,
  const(T)* s,
  basic_string.size_type slen
);

ref basic_string replace (
  basic_string.size_type _Off,
  basic_string.size_type _N0,
  basic_string.size_type _Count,
  T _Ch
);

Function basic_string.replace

ref basic_string replace(S) (
  S pos,
  basic_string.size_type len,
  const(basic_string.value_type)* s
);

Authors

Guillaume Chatelet Manu Evans

License

Distributed under the Boost Software License 1.0. (See accompanying file LICENSE)