Documentation
1
2
3
4
5
6
7
mod automata;

use automata::FloatingPoint;

pub fn is_real(s: &String) -> bool {
    FloatingPoint::accept(s)
}