2022-03-24 12:41:31 +00:00
|
|
|
module Dispatch = Reducer_Dispatch
|
2022-03-29 09:09:59 +00:00
|
|
|
module ErrorValue = Reducer_ErrorValue
|
|
|
|
module Expression = Reducer_Expression
|
|
|
|
module Extra = Reducer_Extra
|
2022-03-24 12:41:31 +00:00
|
|
|
module Js = Reducer_Js
|
|
|
|
module MathJs = Reducer_MathJs
|
|
|
|
|
2022-04-11 03:16:31 +00:00
|
|
|
type expressionValue = Reducer_Expression.expressionValue
|
2022-04-15 06:56:48 +00:00
|
|
|
type externalBindings = Expression.externalBindings
|
2022-04-11 01:18:38 +00:00
|
|
|
let evaluate = Expression.eval
|
2022-04-22 20:15:06 +00:00
|
|
|
let evaluateUsingExternalBindings = Expression.evalUsingExternalBindings
|
2022-04-22 20:19:59 +00:00
|
|
|
let evaluatePartialUsingExternalBindings = Expression.evalPartialUsingExternalBindings
|
2022-03-29 09:09:59 +00:00
|
|
|
let parse = Expression.parse
|
2022-04-17 17:47:05 +00:00
|
|
|
let parseOuter = Expression.parseOuter
|
|
|
|
let parsePartial = Expression.parsePartial
|