Instance Propertyswift-bson 0.3.1BSONABI
count
BSON.BinaryBuffer.swift:18let count: Int
let count: Int
import BSONABI
Models the BSON type system and the binary interface of the BSON serialization format.
@frozen struct BinaryBuffer<Element> where Element : BitwiseCopyable
A BinaryBuffer
is a typed view of an ArraySlice
as a densely-packed buffer of trivial Element
s. It’s a good idea to use something unpretentious like a tuple of fixed-width integers for the Element
type, to avoid unexpected padding behavior.
@frozen enum BSON
The namespace for all BSON types.
@frozen struct Int
A signed integer value type.
@usableFromInline var bytes: ArraySlice<UInt8>