You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In jsonata.js there is possibility to create binding to js namspace and then call a function. For example You can bind Math namespace and call round function.
$math().round(2.5)
How I can do the same binding in dashjoin jsonata implementation?
The text was updated successfully, but these errors were encountered:
The Java equivalent of this would be binding a class in com.dashjoin.jsonata.Jsonata.Frame.bind(String, JFunction) and then calling a method using reflection.
In jsonata.js there is possibility to create binding to js namspace and then call a function. For example You can bind
Math
namespace and callround
function.$math().round(2.5)
How I can do the same binding in dashjoin jsonata implementation?
The text was updated successfully, but these errors were encountered: