Make internal value type aliases for float and int public
This commit is contained in:
parent
36a65c470b
commit
5549f1bba5
@ -4,6 +4,8 @@
|
||||
|
||||
### Added
|
||||
|
||||
* Made internal alias `IntType` and `FloatType` used by the `Value` enum public
|
||||
|
||||
### Removed
|
||||
|
||||
* Removed integration tests from shipped crate
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user