(key: K, args: MutableMapping[K, PyTree], schema: ArgSchema)
| 822 | kwargs = kwargs.copy() |
| 823 | |
| 824 | def update(key: K, args: MutableMapping[K, PyTree], schema: ArgSchema) -> None: |
| 825 | args[key] = fn(args[key], schema) |
| 826 | |
| 827 | for i, schema in enumerate(op._schema.arguments): |
| 828 | if schema.name in kwargs: |