jsonlogic
jsonlogic copied to clipboard
Go Lang implementation of JsonLogic
close #55
```go package main import ( "bytes" "fmt" "strings" "github.com/diegoholiveira/jsonlogic/v3" ) func main() { logic := strings.NewReader(`{"
Hey @diegoholiveira I'm using JsonLogic in Go backend, with sometimes complex logics (lot of sums, conditional ...) And in order to help my end users to debug in case of...
Hello, I am trying to override `==` and `all` operator for my implementation. To do so, my code looks like this: ``` jsonlogic.AddOperator("==", util.EqualsOperator) jsonlogic.AddOperator("all", util.AllOperator) ``` And then I...
Hey, not sure if this is best place to post this question, as I don't think it is a problem with the golang jsonlogic as I am noticing the same...
## Summary Add three new operators for comparing arrays, commonly needed in workflow automation systems. ## New Operators | Operator | Description | Example | |----------|-------------|---------| | `contains_all` | Returns...
## Summary I'd like to propose adding array comparison operators that are commonly needed in workflow automation systems. ## Proposed Operators | Operator | Description | Example | |----------|-------------|---------| |...