Files
byteorder
gnuplot
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (c) 2013-2014 by SiegeLord
//
// All rights reserved. Distributed under LGPL 3.0. For full terms see the file LICENSE.

use byteorder::{LittleEndian, WriteBytesExt};
use std::io::{self, Write};

pub trait Writer: Write
{
	fn write_str(&mut self, s: &str) -> Result<(), io::Error>
	{
		self.write_all(s.as_bytes())
	}

	fn write_le_f64(&mut self, v: f64) -> Result<(), io::Error>
	{
		self.write_f64::<LittleEndian>(v)
	}
}

impl<T: Write> Writer for T {}