ggstd 0.1.0

Partial implementation of Go standard library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2023 The rust-ggstd authors.
// SPDX-License-Identifier: BSD-3-Clause

mod bufio;
mod scan;

pub use bufio::{Reader, Writer};
pub use scan::{scan_bytes, scan_lines, Error, Scanner};

#[cfg(test)]
mod bufio_test;
#[cfg(test)]
mod scan_test;