FastaRecord.opIndex - multiple declarations

Function FastaRecord.opIndex

Get the sequence of this FASTA record without newlines.

auto opIndex() const pure;

Function FastaRecord.opIndex

Get the sequence character at index i of this FASTA record.

auto opIndex (
  int i
) const pure;

Function FastaRecord.opIndex

Get sub-sequence from i to j (exclusive) of this FASTA record.

auto opIndex (
  in FastaRecord.Slice slice
) const pure;