squiggle/packages/squiggle-lang/src/rescript/FunctionRegistry
Umur Ozkul 2e8e71bbd0 project
test

remove setResult

parse end of outerblock

test end of outer block

compiles

testing

bindings tested

todo chain bindings

topological sort
2022-08-10 11:53:39 +02:00
..
Library project 2022-08-10 11:53:39 +02:00
FunctionRegistry_Core.res project 2022-08-10 11:53:39 +02:00
FunctionRegistry_Helpers.res Added SampleSet fns to FunctionRegistry 2022-07-19 15:52:28 -07:00
FunctionRegistry_Library.res Fixed major bug for module functions 2022-07-19 23:06:10 -07:00
README.md Fixing lint and tests 2022-05-23 14:28:32 -04:00

Function Registry

The function registry is a library for organizing function definitions.

The main interface is fairly constrained. Basically, write functions like the following, and add them to a big array.

  Function.make(
    ~name="Normal",
    ~definitions=[
        FnDefinition.make(
            ~name="Normal",
            ~definitions=[
                FnDefinition.make(~name="normal", ~inputs=[FRTypeDistOrNumber, FRTypeDistOrNumber], ~run=(
                    inputs,
                    env,
                ) =>
                    inputs
                    ->Prepare.ToValueTuple.twoDistOrNumber
                    ->E.R.bind(
                    Process.twoDistsOrNumbersToDistUsingSymbolicDist(
                        ~fn=E.Tuple2.toFnCall(SymbolicDist.Normal.make),
                        ~env,
                        ~values=_,
                    ),
                    )
                    ->E.R2.fmap(Wrappers.evDistribution)
                ),
            ],
        )
    ],
  )

The Function name is just there for future documentation. The function defintions

Key Files

FunctionRegistry_Core Key types, internal functionality, and a Registry module with a matchAndRun function to call function definitions.

FunctionRegistry_Library A list of all the Functions defined in the Function Registry.

FunctionRegistry_Helpers A list of helper functions for the FunctionRegistry_Library.