package lambdapi
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=9b13c3121ef87cf4d3311a8a1db43db4be7f0e5e2a702fdaff04a3b3c432cb31
sha512=81e0760ca77cb862a5bdb8927aa37faf7141c4e2484a8163dad0a3eaa21cc691acb5f72279c78588c085f53dde4bd35186346378feac0ab55ac06a679cf2e60f
doc/lambdapi.core/Core/Builtin/index.html
Module Core.BuiltinSource
Registering and checking builtin symbols.
get ss pos name returns the symbol mapped to the builtin name. If the symbol cannot be found then Fatal is raised.
get_opt ss name returns Some s where s is the symbol mapped to the builtin name, and None otherwise.
Hash-table used to record checking functions for builtins.
check ss pos name sym runs the registered check for builtin symbol name on the symbol sym (if such a check has been registered). Note that the bmap argument is expected to contain the builtin symbols in scope, and the pos argument is used for error reporting.
register name check registers the checking function check, for the builtin symbols named name. When the check is run, check receives as argument a position for error reporting as well as the map of every builtin symbol in scope. It is expected to raise the Fatal exception to signal an error. Note that this function should not be called using a name for which a check has already been registered.
val register_expected_type :
Term.term Lplib.Base.eq ->
Term.term Lplib.Base.pp ->
string ->
(Sig_state.sig_state -> Common.Pos.popt -> Term.term) ->
unitregister_expected_type name build pp registers a checking function that checks the type of a symbol defining the builtin name against a type constructed using the given build function.