flatc-fork 0.6.0+25.12.19-2026-02-06-03fffb2

Vendored executable of flatbuffer's `flatc` (maintained fork).
Documentation
// automatically generated by the FlatBuffers compiler, do not modify

package NamespaceA

import com.google.flatbuffers.Constants
import com.google.flatbuffers.FlatBufferBuilder
import com.google.flatbuffers.Table
import java.nio.ByteBuffer
import java.nio.ByteOrder

@Suppress("unused")
@ExperimentalUnsignedTypes
class TableInFirstNS : Table() {

  fun __init(_i: Int, _bb: ByteBuffer) {
    __reset(_i, _bb)
  }

  fun __assign(_i: Int, _bb: ByteBuffer): TableInFirstNS {
    __init(_i, _bb)
    return this
  }

  val fooTable: NamespaceA.NamespaceB.TableInNestedNS?
    get() = fooTable(NamespaceA.NamespaceB.TableInNestedNS())

  fun fooTable(obj: NamespaceA.NamespaceB.TableInNestedNS): NamespaceA.NamespaceB.TableInNestedNS? {
    val o = __offset(4)
    return if (o != 0) {
      obj.__assign(__indirect(o + bb_pos), bb)
    } else {
      null
    }
  }

  val fooEnum: Byte
    get() {
      val o = __offset(6)
      return if (o != 0) bb.get(o + bb_pos) else 0
    }

  fun mutateFooEnum(fooEnum: Byte): Boolean {
    val o = __offset(6)
    return if (o != 0) {
      bb.put(o + bb_pos, fooEnum)
      true
    } else {
      false
    }
  }

  val fooUnionType: UByte
    get() {
      val o = __offset(8)
      return if (o != 0) bb.get(o + bb_pos).toUByte() else 0u
    }

  fun mutateFooUnionType(fooUnionType: UByte): Boolean {
    val o = __offset(8)
    return if (o != 0) {
      bb.put(o + bb_pos, fooUnionType.toByte())
      true
    } else {
      false
    }
  }

  fun fooUnion(obj: Table): Table? {
    val o = __offset(10)
    return if (o != 0) __union(obj, o + bb_pos) else null
  }

  val fooStruct: NamespaceA.NamespaceB.StructInNestedNS?
    get() = fooStruct(NamespaceA.NamespaceB.StructInNestedNS())

  fun fooStruct(
    obj: NamespaceA.NamespaceB.StructInNestedNS
  ): NamespaceA.NamespaceB.StructInNestedNS? {
    val o = __offset(12)
    return if (o != 0) {
      obj.__assign(o + bb_pos, bb)
    } else {
      null
    }
  }

  companion object {
    fun validateVersion() = Constants.FLATBUFFERS_25_12_19()

    fun getRootAsTableInFirstNS(_bb: ByteBuffer): TableInFirstNS =
      getRootAsTableInFirstNS(_bb, TableInFirstNS())

    fun getRootAsTableInFirstNS(_bb: ByteBuffer, obj: TableInFirstNS): TableInFirstNS {
      _bb.order(ByteOrder.LITTLE_ENDIAN)
      return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb))
    }

    fun startTableInFirstNS(builder: FlatBufferBuilder) = builder.startTable(5)

    fun addFooTable(builder: FlatBufferBuilder, fooTable: Int) = builder.addOffset(0, fooTable, 0)

    fun addFooEnum(builder: FlatBufferBuilder, fooEnum: Byte) = builder.addByte(1, fooEnum, 0)

    fun addFooUnionType(builder: FlatBufferBuilder, fooUnionType: UByte) =
      builder.addByte(2, fooUnionType.toByte(), 0)

    fun addFooUnion(builder: FlatBufferBuilder, fooUnion: Int) = builder.addOffset(3, fooUnion, 0)

    fun addFooStruct(builder: FlatBufferBuilder, fooStruct: Int) =
      builder.addStruct(4, fooStruct, 0)

    fun endTableInFirstNS(builder: FlatBufferBuilder): Int {
      val o = builder.endTable()
      return o
    }
  }
}