bulk code format fix (#8707)

This commit is contained in:
Derek Bailey
2025-09-23 21:50:27 -07:00
committed by GitHub
parent 0e047869da
commit caf3b494db
559 changed files with 38871 additions and 31276 deletions

View File

@@ -58,8 +58,8 @@ public struct Reference {
byteBuffer: ByteBuffer,
offset: Int,
parentWidth: UInt8,
packedType: UInt8)
{
packedType: UInt8
) {
guard let type = FlexBufferType(rawValue: UInt64(packedType >> 2)) else {
return nil
}
@@ -76,8 +76,8 @@ public struct Reference {
offset: Int,
parentWidth: UInt8,
byteWidth: UInt8,
type: FlexBufferType)
{
type: FlexBufferType
) {
self.byteBuffer = byteBuffer
self.offset = offset
self.parentWidth = parentWidth
@@ -97,7 +97,8 @@ public struct Reference {
public var uint: UInt64? {
return switch type {
case .uint: byteBuffer.readUInt64(offset: offset, byteWidth: byteWidth)
case .indirectUInt: byteBuffer.readUInt64(
case .indirectUInt:
byteBuffer.readUInt64(
offset: indirect(),
byteWidth: byteWidth)
default: nil
@@ -108,7 +109,8 @@ public struct Reference {
public var int: Int64? {
return switch type {
case .int: byteBuffer.readInt64(offset: offset, byteWidth: byteWidth)
case .indirectInt: byteBuffer.readInt64(
case .indirectInt:
byteBuffer.readInt64(
offset: indirect(),
byteWidth: byteWidth)
default: nil
@@ -119,7 +121,8 @@ public struct Reference {
public var double: Double? {
return switch type {
case .float: byteBuffer.readDouble(offset: offset, byteWidth: byteWidth)
case .indirectFloat: byteBuffer.readDouble(
case .indirectFloat:
byteBuffer.readDouble(
offset: indirect(),
byteWidth: byteWidth)
default: nil
@@ -238,7 +241,8 @@ public struct Reference {
@inline(__always)
public func withUnsafeRawPointer<Result>(
_ completion: (UnsafeRawPointer) throws
-> Result)
-> Result
)
rethrows -> Result?
{
return try byteBuffer.readWithUnsafeRawPointer(