vrp_parser 0.1.0

A library for parsing VRPLib-formatted files.
Documentation
1
2
3
4
5
use super::{Token, TokenError};

pub(crate) fn tokenize(line: &str) -> Result<Token, TokenError> {
    Token::try_from(line)
}