Crate aoc_next

Source
Expand description

Helper library for Advent of Code. Inspired by cargo-aoc.

Re-exports§

pub use parser::FailableParser;
pub use parser::Parser;
pub use solution::Solution;
pub use solution::Solver;
pub use app::*;

Modules§

app
Helpers for executing solutions.
input
macros
Helper macros to ease the declaration of the functions that contain your solutions of the exercises.
parser
solution

Macros§

failable_parser
Declare a new failable parser.
parser
Declare a new infailable parser.
solution
Declare a new solution:
solver
Declare a new solver, e. g. a funtion that solves an exercise.