convenient function to instantiate a number parser
unittests for number parser
import unit_threaded; auto parser = number!(immutable(char))(); auto res = parser.parse("123.123"); res.success.shouldBeTrue; res.results[0].shouldEqual(123.123);
See Implementation
convenient function to instantiate a number parser