noodles-sam 0.85.0

Sequence Alignment/Map (SAM) format reader and writer
Documentation
1
2
3
4
5
6
7
8
use std::io::{self, Write};

pub(crate) fn write_string<W>(writer: &mut W, buf: &[u8]) -> io::Result<()>
where
    W: Write,
{
    writer.write_all(buf)
}