mustiikhalil bd1b2d0baf
[Swift] Adds new API to reduce memory copying within swift (#8484)
* 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
2025-03-18 07:48:39 +01:00
..
2025-02-10 20:13:39 -08:00
2025-01-15 08:21:09 -08:00
2025-01-09 23:36:46 -08:00

Documentation

This is the source of the FlatBuffers documentation, that is served at https://flatbuffers.dev.

Local Building

The documentation can be built and served locally during development, see [https//flatbuffers.dev/contributing/#local-development] for full details.

tl;dr

Install:

pip install mkdocs-material
pip install mkdocs-redirects

Build and Serve:

mkdocs serve -f docs/mkdocs.yml