| Catmandu::Fix::Bind::with(3pm) | User Contributed Perl Documentation | Catmandu::Fix::Bind::with(3pm) |
Catmandu::Fix::Bind::with - a binder that computes Fix-es in the context of a path
# Input data
data:
- name: patrick
- name: nicolas
# Fix
do with(path:data)
if all_match(name,nicolas)
reject()
end
end
# will produce
data:
- name: patrick
The "with" bind allows to run fixes in the scope of a path.
Given a deep nested data structure :
my:
deep:
field:
name: James Brown
these two fixes are equal:
add_field(my.deep.field.style, funk)
do with(path:my.deep.field)
add_field(style,funk)
end
The path to a list in the data.
Catmandu::Fix::Bind
| 2023-03-03 | perl v5.36.0 |