Function poloto::plot_io[][src]

pub fn plot_io<'a, T: Write + 'a>(writer: T) -> Plotter<'a, WriterAdaptor<T>>

Convenience function for

Instead of this

let plotter = poloto::plot(tagger::upgrade(std::io::stdout()));

You can call this function like this

let plotter = poloto::plot_io(std::io::stdout());