All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.jeroenr.bson.reader.BsonNullReader.scala Maven / Gradle / Ivy

The newest version!
package com.github.jeroenr.bson.reader

import java.nio.ByteBuffer

import com.github.jeroenr.bson.element.BsonNull

object BsonNullReader extends Reader[BsonNull] {
  override def read(buffer: ByteBuffer): Option[BsonNull] = {
    Some(BsonNull(readCString(buffer)))
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy