Open
Description
Summary
ListValue is not iterable
What is the feature request for?
The core library
The Problem
With official protobuf_pb2, you can do:
args = ListValue()
args.extend([1,2,3])
some_function(*args)
But with betterproto this doesn't work currently
The Ideal Solution
Add some wrapper methods (extend, iter, ..)
The Current Solution
Always use .value