1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-07-05 00:49:00 +02:00

Feature/#10 merge recursive (#140)

This commit is contained in:
3timeslazy
2018-10-25 15:01:25 +03:00
committed by Tim Voronov
parent 549b4abd3b
commit 8575863c2b
3 changed files with 309 additions and 6 deletions

View File

@ -4,11 +4,12 @@ import "github.com/MontFerret/ferret/pkg/runtime/core"
func NewLib() map[string]core.Function {
return map[string]core.Function{
"HAS": Has,
"KEYS": Keys,
"KEEP": Keep,
"MERGE": Merge,
"ZIP": Zip,
"VALUES": Values,
"HAS": Has,
"KEYS": Keys,
"KEEP": Keep,
"MERGE": Merge,
"ZIP": Zip,
"VALUES": Values,
"MERGE_RECURSIVE": MergeRecursive,
}
}