remove method

CarvableString remove(
  1. int start,
  2. int end
)

Create a carving that will remove a section when applied.

  • start - Inclusive
  • end - Exclusive

Implementation

CarvableString remove(int start, int end) =>
    this..carve(CarvingReplacement(start, end));