Olian04 / Recordari

Recordari is a type and structure validation tool for configuration files
MIT License
4 stars 0 forks source link

Optimize "and" to not repeat true assertions #10

Closed Olian04 closed 3 years ago

Olian04 commented 6 years ago
R.and([
  R.Function.Arguments.Length.Exact(2), 
  R.Function.Test(1, 2).Number.Exact(2)
]); 

Will test "Function" twice, even though we only need to test it once.