mirror of
https://github.com/google/flatbuffers.git
synced 2025-04-06 08:21:09 +08:00
* Adds new API to reduce memory copying within swift Adds new storage container _InternalByteBuffer which will be holding the data that will be created within the swift lib, however reading data will be redirected to ByteBuffer, which should be able to handle all types of data that swift provide without the need to copy the data itself. This is due to holding a reference to the data. Replaces assumingMemoryBinding with bindMemory which is safer Adds function that provides access to a UnsafeBufferPointer for scalars and NativeStructs within swift Updates docs Suppress compilation warnings by replacing var with let Using overflow operators within swift to improve performance Adds tests for GRPC message creation from a retained _InternalByteBuffer
FlatBuffers swift can be found in both SPM
.package(url: "https://github.com/google/flatbuffers.git", from: "X.Y.Z"),
and Cocoapods
pod 'FlatBuffers'
Contribute
1- Always run swift test --generate-linuxmain
whenever new test functions are added or removed