Alias String.insert

Inserts a stringish range at the end of the string.

struct String
{
  // ...
  alias insert ;
  // ...
}

Parameters

NameDescription
R Type of the inserted string.
str String should be inserted.

Returns

The number of bytes inserted.