How to use dproto for removing and element from a repeated field
Sudhi
sudheendra.malli at gmail.com
Wed Feb 6 16:28:01 UTC 2019
On Wednesday, 6 February 2019 at 14:31:59 UTC, Paul Backus wrote:
> On Wednesday, 6 February 2019 at 10:07:06 UTC, Sudhi wrote:
>> Hi,
>>
>> I have been using dproto to work with protocol buffers. I have
>> below proto structure
>>
>> message Person
>> {
>> required string name = 1;
>> required string id = 2;
>> repeated string emailId = 3;
>> }
>>
>> Where a person can have multiple email ids.
>>
>> I could add the email id to person using below code
>>
>> person.emailId ~= "new-email";
>>
>> However if i want to delete a email id from a person strucure,
>> how would i do that.
>>
>> Thanks,
>> Sudhi
>
> https://dlang.org/phobos/std_algorithm_mutation.html#remove
Thanks, that worked for me.
More information about the Digitalmars-d-learn
mailing list