Remove invalid claim that Protocol Buffers does not support unions (#6413)

Protocol Buffers v3 supports the `oneof` operator:
https://developers.google.com/protocol-buffers/docs/proto3#oneof

Signed-off-by: Juan Cruz Viotti <jv@jviotti.com>
This commit is contained in:
Juan Cruz Viotti
2021-01-21 16:23:54 -04:00
committed by GitHub
parent 760c657551
commit 52e2177069

View File

@@ -64,8 +64,8 @@ Protocol Buffers is indeed relatively similar to FlatBuffers,
with the primary difference being that FlatBuffers does not need a parsing/ with the primary difference being that FlatBuffers does not need a parsing/
unpacking step to a secondary representation before you can unpacking step to a secondary representation before you can
access data, often coupled with per-object memory allocation. The code access data, often coupled with per-object memory allocation. The code
is an order of magnitude bigger, too. Protocol Buffers has neither optional is an order of magnitude bigger, too. Protocol Buffers has no optional
text import/export nor schema language features like unions. text import/export.
### But all the cool kids use JSON! ### But all the cool kids use JSON!