Required Instance Methodswift-protobuf 1.29.0SwiftProtobuf

visitRepeatedMessageField(value:fieldNumber:)

Called for each repeated nested message field. The method is called once with the complete array of values for the field.

Visitor.swift:270
mutating func visitRepeatedMessageField<M>(value: [M], fieldNumber: Int) throws where M : Message

A default implementation is provided that simply calls visitSingularMessageField once for each item in the array.