amazon-ion / ion-schema-rust

Rust implementation of Ion Schema
https://amazon-ion.github.io/ion-schema/sandbox
Apache License 2.0
13 stars 6 forks source link

add implementation of `ieee754_float` constraint ISL 2.0 #160

Closed desaikd closed 1 year ago

desaikd commented 1 year ago

Add implementation of ieee754_float constraint as per ISL 2.0.

Grammar:

<IEEE754_FLOAT> ::= ieee754_float: binary16
                  | ieee754_float: binary32
                  | ieee754_float: binary64

Ion Schema Specification: https://amazon-ion.github.io/ion-schema/docs/isl-2-0/spec#ieee754_float

desaikd commented 1 year ago

Completed with #174