Rope.replace

Replace value between two indexes with a new one.

  1. Rope replace(size_t low, size_t high, Rope value)
    struct Rope
    const nothrow
    replace
    (
    size_t low
    ,
    size_t high
    ,)
  2. Rope replace(String oldValue, Rope value)

Parameters

low size_t

Low index, inclusive; First index to delete.

high size_t

High index, exclusive; First index after the newly inserted fragment to keep.

value Rope

Value to insert.

Meta