Make internal value type aliases for float and int public

This commit is contained in:
Sebastian Schmidt 2019-03-20 16:18:52 +02:00
parent 36a65c470b
commit 5549f1bba5
2 changed files with 5 additions and 0 deletions

View File

@ -4,6 +4,8 @@
### Added
* Made internal alias `IntType` and `FloatType` used by the `Value` enum public
### Removed
* Removed integration tests from shipped crate

View File

@ -2,7 +2,10 @@ use error::Error;
mod display;
/// The type used to represent integers in `Value::Int`.
pub type IntType = i64;
/// The type used to represent floats in `Value::Float`.
pub type FloatType = f64;
/// The value type used by the parser.