Initializerswift-bson 0.3.1BSONDecoding->BSONABI
init(bson:)
BSON.BinaryArray (ext).swift:4init(bson: BSON.BinaryDecoder) throws
init(bson: BSON.BinaryDecoder) throws
s7BSONABI4BSONO12BinaryBufferV12BSONDecodingE4bsonAEy_xGAcFE0C7DecoderV_tKcfc
What are these?5UGIZ
where Element:BitwiseCopyable
import BSONDecoding
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 BinaryDecoder
protocol BitwiseCopyable