tomkowz / Swifternalization

Localize iOS apps in a smarter way using JSON files. Swift framework.
MIT License
579 stars 47 forks source link

Improve Inequality Extended Expressions #7

Closed tomkowz closed 9 years ago

tomkowz commented 9 years ago

I'm writing tests for floating point numbers support and noticed that framework could only support these kind of extended expressions:

-10<x<5
5.5<=x<=9.7
4.3<x<=9
5=x=10
-20<x<-10

There is no sense to keep support for e.g. -10<x>-20 because it can be rewritten to the last one from examples.