CellsAutomate.Mutator.Mutations.DeleteCommandMutation.Delete C# (CSharp) Method

Delete() private method

private Delete ( int index ) : void
index int
return void
        private void Delete(int index)
        {
            if (_marks[index]) return;
            _marks[index] = true;
            _commandsToRemove.Add(new RemoveCommand(_commands, index));
            AssertValid(index);
        }