Replace(Instruction, Parser<char>, Instruction) ➜ Instruction;

Replaces each match of a character Parser in the result of an instruction.

Replace(Instruction, Parser<char>, char ➜ Instruction) ➜ Instruction;

Transforms each match of a character Parser in the result of an instruction.

Replace(Instruction, Parser<char>, (char, int) ➜ Instruction) ➜ Instruction;

Transforms and counts each match of a character Parser in the result of an instruction.

Replace(Instruction, Parser<ReadOnlyMemory<char>>, Instruction) ➜ Instruction;

Replaces each match of a string Parser in the result of an instruction.

Replace(Instruction, Parser<ReadOnlyMemory<char>>, string ➜ Instruction) ➜ Instruction;

Transforms each match of a string Parser in the result of an instruction.

Replace(Instruction, Parser<ReadOnlyMemory<char>>, (string, int) ➜ Instruction) ➜ Instruction;

Transforms and counts each match of a string Parser in the result of an instruction.

Replace(Instruction, Parser<Instruction>, Instruction) ➜ Instruction;

Replaces each match of an instruction Parser in the result of an instruction.

Replace(Instruction, Parser<Instruction>, string ➜ Instruction) ➜ Instruction;

Transforms each match of an instruction Parser in the result of an instruction.

Replace(Instruction, Parser<Instruction>, (string, int) ➜ Instruction) ➜ Instruction;

Transforms and counts each match of an instruction Parser in the result of an instruction.