1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
//! For searching/filtering datasets of chess games.
//! 
//! Features
//! 
//! * Read and save collections of PGN files
//! * Filter games looking for games containing positions with certain combinations of pieces
//! * Save collections of PGN games or individual positions after filtering.
//! 
//! Users will mostly work with the top-level functions in [`Games`](self::Games).
//!

pub mod board;
pub use board::*;

pub mod game;
pub use game::*;

pub mod games;
pub use games::*;

mod moves;