Lines Matching refs:FlatBuffers
6 Before diving into the FlatBuffers usage in Swift, it should be noted that
8 to general FlatBuffers usage in all of the supported languages (including Swift).
9 This page is designed to cover the nuances of FlatBuffers usage, specific to
17 ## FlatBuffers Swift library code location
19 The code for the FlatBuffers Swift library can be found at
20 `flatbuffers/swift`. You can browse the library code on the [FlatBuffers
23 ## Testing the FlatBuffers Swift library
26 …uffers.Test.Swift](https://github.com/google/flatbuffers/blob/master/tests/FlatBuffers.Test.Swift).
28 …[SwiftTest.sh](https://github.com/google/flatbuffers/blob/master/tests/FlatBuffers.Test.Swift/Swif…
33 ## Using the FlatBuffers Swift library
36 example of how to use FlatBuffers in Swift.*
38 FlatBuffers supports reading and writing binary FlatBuffers in Swift.
40 To use FlatBuffers in your own code, first generate Swift structs from your
41 schema with the `--swift` option to `flatc`. Then include FlatBuffers using `SPM` in
42 by adding the path to `FlatBuffers/swift` into it. The generated code should also be
51 import FlatBuffers