nest_dotted
Table of Contents
Function
nest_dotted — transform fields in a record with dotted names to nested records.
Synopsis
nest_dotted(val: record) -> record
Description
The nest_dotted function returns a copy of val
with all dotted field names
converted into nested records. If no argument is supplied to nest_dotted
,
nest_dotted
operates on this
.
Examples
yield nest_dotted()
{"a.b.c":"foo"}
Loading...