sgf-parse 4.2.8

A parser for the SGF file format for Go games
Documentation
1
2
3
4
5
6
7
8
9
10
mod error;
pub mod parse;
mod sgf_prop;
mod to_sgf;
mod values;

pub use error::SgfPropError;
pub use sgf_prop::SgfProp;
pub use to_sgf::ToSgf;
pub use values::{Color, Double, PropertyType, SimpleText, Text};