1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-04-23 12:18:46 +02:00

16 lines
372 B
Go
Raw Normal View History

2018-10-07 17:58:22 -04:00
package objects
import "github.com/MontFerret/ferret/pkg/runtime/core"
func RegisterLib(ns core.Namespace) error {
return ns.RegisterFunctions(core.Functions{
2018-10-25 15:01:25 +03:00
"HAS": Has,
"KEYS": Keys,
2019-02-02 05:39:28 +03:00
"KEEP_KEYS": KeepKeys,
2018-10-25 15:01:25 +03:00
"MERGE": Merge,
"ZIP": Zip,
"VALUES": Values,
"MERGE_RECURSIVE": MergeRecursive,
})
2018-10-07 17:58:22 -04:00
}