Implementing Macro #61
                
     Open
            
            
          
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
This change implements a new functional interface, called 'Macro' and adds functionality to add operations implementing this interface. Such an operation can be added using a symbolic name and calling the new
JsonLogic#addMacro(String name, Macro macro)
method. (
addOperation()cannot be overloaded, because the signatures collide.).The macros are free to
The unit test adds an operation that has a side effect, and then also adds the macro "unless" that executes the second argument unless the first one is truthy. Since the test's second argument operates with a side effect (setting a boolean to true), the test can check that the argument was called when the first argument to
unlesswas false and was not called in the second case.