2021-07-26 19:26:28 +00:00
|
|
|
<!-- Generated with Stardoc: http://skydoc.bazel.build -->
|
|
|
|
|
2021-10-27 13:13:59 +00:00
|
|
|
Starlark module for working with partial function objects.
|
|
|
|
|
|
|
|
Partial function objects allow some parameters are bound before the call.
|
|
|
|
|
|
|
|
Similar to https://docs.python.org/3/library/functools.html#functools.partial.
|
|
|
|
|
|
|
|
|
2022-08-30 18:57:34 +00:00
|
|
|
<a id="partial.make"></a>
|
2021-07-26 19:26:28 +00:00
|
|
|
|
2019-02-28 22:43:57 +00:00
|
|
|
## partial.make
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
partial.make(<a href="#partial.make-func">func</a>, <a href="#partial.make-args">args</a>, <a href="#partial.make-kwargs">kwargs</a>)
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
Creates a partial that can be called using `call`.
|
|
|
|
|
|
|
|
A partial can have args assigned to it at the make site, and can have args
|
|
|
|
passed to it at the call sites.
|
|
|
|
|
|
|
|
A partial 'function' can be defined with positional args and kwargs:
|
|
|
|
|
|
|
|
# function with no args
|
2021-07-15 01:55:10 +00:00
|
|
|
```
|
2019-02-28 22:43:57 +00:00
|
|
|
def function1():
|
|
|
|
...
|
2021-07-15 01:55:10 +00:00
|
|
|
```
|
2019-02-28 22:43:57 +00:00
|
|
|
|
|
|
|
# function with 2 args
|
2021-07-15 01:55:10 +00:00
|
|
|
```
|
2019-02-28 22:43:57 +00:00
|
|
|
def function2(arg1, arg2):
|
|
|
|
...
|
2021-07-15 01:55:10 +00:00
|
|
|
```
|
2019-02-28 22:43:57 +00:00
|
|
|
|
|
|
|
# function with 2 args and keyword args
|
2021-07-15 01:55:10 +00:00
|
|
|
```
|
2019-02-28 22:43:57 +00:00
|
|
|
def function3(arg1, arg2, x, y):
|
|
|
|
...
|
2021-07-15 01:55:10 +00:00
|
|
|
```
|
2019-02-28 22:43:57 +00:00
|
|
|
|
|
|
|
The positional args passed to the function are the args passed into make
|
|
|
|
followed by any additional positional args given to call. The below example
|
|
|
|
illustrates a function with two positional arguments where one is supplied by
|
|
|
|
make and the other by call:
|
|
|
|
|
|
|
|
# function demonstrating 1 arg at make site, and 1 arg at call site
|
2021-07-15 01:55:10 +00:00
|
|
|
```
|
2019-02-28 22:43:57 +00:00
|
|
|
def _foo(make_arg1, func_arg1):
|
2021-07-15 01:55:10 +00:00
|
|
|
print(make_arg1 + " " + func_arg1 + "!")
|
|
|
|
```
|
2019-02-28 22:43:57 +00:00
|
|
|
|
|
|
|
For example:
|
|
|
|
|
2021-07-15 01:55:10 +00:00
|
|
|
```
|
2019-02-28 22:43:57 +00:00
|
|
|
hi_func = partial.make(_foo, "Hello")
|
|
|
|
bye_func = partial.make(_foo, "Goodbye")
|
|
|
|
partial.call(hi_func, "Jennifer")
|
|
|
|
partial.call(hi_func, "Dave")
|
|
|
|
partial.call(bye_func, "Jennifer")
|
|
|
|
partial.call(bye_func, "Dave")
|
2021-07-15 01:55:10 +00:00
|
|
|
```
|
2019-02-28 22:43:57 +00:00
|
|
|
|
|
|
|
prints:
|
|
|
|
|
2021-07-15 01:55:10 +00:00
|
|
|
```
|
2019-02-28 22:43:57 +00:00
|
|
|
"Hello, Jennifer!"
|
|
|
|
"Hello, Dave!"
|
|
|
|
"Goodbye, Jennifer!"
|
|
|
|
"Goodbye, Dave!"
|
2021-07-15 01:55:10 +00:00
|
|
|
```
|
2019-02-28 22:43:57 +00:00
|
|
|
|
|
|
|
The keyword args given to the function are the kwargs passed into make
|
|
|
|
unioned with the keyword args given to call. In case of a conflict, the
|
|
|
|
keyword args given to call take precedence. This allows you to set a default
|
|
|
|
value for keyword arguments and override it at the call site.
|
|
|
|
|
|
|
|
Example with a make site arg, a call site arg, a make site kwarg and a
|
|
|
|
call site kwarg:
|
|
|
|
|
2021-07-15 01:55:10 +00:00
|
|
|
```
|
2019-02-28 22:43:57 +00:00
|
|
|
def _foo(make_arg1, call_arg1, make_location, call_location):
|
|
|
|
print(make_arg1 + " is from " + make_location + " and " +
|
|
|
|
call_arg1 + " is from " + call_location + "!")
|
|
|
|
|
|
|
|
func = partial.make(_foo, "Ben", make_location="Hollywood")
|
|
|
|
partial.call(func, "Jennifer", call_location="Denver")
|
2021-07-15 01:55:10 +00:00
|
|
|
```
|
2021-07-26 19:26:28 +00:00
|
|
|
|
2019-02-28 22:43:57 +00:00
|
|
|
Prints "Ben is from Hollywood and Jennifer is from Denver!".
|
|
|
|
|
2021-07-15 01:55:10 +00:00
|
|
|
```
|
2019-02-28 22:43:57 +00:00
|
|
|
partial.call(func, "Jennifer", make_location="LA", call_location="Denver")
|
2021-07-15 01:55:10 +00:00
|
|
|
```
|
2021-07-26 19:26:28 +00:00
|
|
|
|
2019-02-28 22:43:57 +00:00
|
|
|
Prints "Ben is from LA and Jennifer is from Denver!".
|
|
|
|
|
|
|
|
Note that keyword args may not overlap with positional args, regardless of
|
|
|
|
whether they are given during the make or call step. For instance, you can't
|
|
|
|
do:
|
|
|
|
|
2021-07-15 01:55:10 +00:00
|
|
|
```
|
2019-02-28 22:43:57 +00:00
|
|
|
def foo(x):
|
|
|
|
pass
|
|
|
|
|
|
|
|
func = partial.make(foo, 1)
|
|
|
|
partial.call(func, x=2)
|
2021-07-15 01:55:10 +00:00
|
|
|
```
|
2019-02-28 22:43:57 +00:00
|
|
|
|
2021-07-26 19:26:28 +00:00
|
|
|
|
|
|
|
**PARAMETERS**
|
2019-02-28 22:43:57 +00:00
|
|
|
|
|
|
|
|
2021-07-26 19:26:28 +00:00
|
|
|
| Name | Description | Default Value |
|
2021-10-27 13:13:59 +00:00
|
|
|
| :------------- | :------------- | :------------- |
|
|
|
|
| <a id="partial.make-func"></a>func | The function to be called. | none |
|
|
|
|
| <a id="partial.make-args"></a>args | Positional arguments to be passed to function. | none |
|
|
|
|
| <a id="partial.make-kwargs"></a>kwargs | Keyword arguments to be passed to function. Note that these can be overridden at the call sites. | none |
|
|
|
|
|
|
|
|
**RETURNS**
|
2021-07-26 19:26:28 +00:00
|
|
|
|
2021-10-27 13:13:59 +00:00
|
|
|
A new `partial` that can be called using `call`
|
2021-07-26 19:26:28 +00:00
|
|
|
|
2021-10-27 13:13:59 +00:00
|
|
|
|
2022-08-30 18:57:34 +00:00
|
|
|
<a id="partial.call"></a>
|
2021-07-26 19:26:28 +00:00
|
|
|
|
2019-02-28 22:43:57 +00:00
|
|
|
## partial.call
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
partial.call(<a href="#partial.call-partial">partial</a>, <a href="#partial.call-args">args</a>, <a href="#partial.call-kwargs">kwargs</a>)
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
Calls a partial created using `make`.
|
|
|
|
|
2021-07-26 19:26:28 +00:00
|
|
|
**PARAMETERS**
|
|
|
|
|
|
|
|
|
|
|
|
| Name | Description | Default Value |
|
2021-10-27 13:13:59 +00:00
|
|
|
| :------------- | :------------- | :------------- |
|
|
|
|
| <a id="partial.call-partial"></a>partial | The partial to be called. | none |
|
|
|
|
| <a id="partial.call-args"></a>args | Additional positional arguments to be appended to the ones given to make. | none |
|
|
|
|
| <a id="partial.call-kwargs"></a>kwargs | Additional keyword arguments to augment and override the ones given to make. | none |
|
|
|
|
|
|
|
|
**RETURNS**
|
|
|
|
|
|
|
|
Whatever the function in the partial returns.
|
2021-07-26 19:26:28 +00:00
|
|
|
|
|
|
|
|
2022-08-30 18:57:34 +00:00
|
|
|
<a id="partial.is_instance"></a>
|
2021-07-26 19:26:28 +00:00
|
|
|
|
|
|
|
## partial.is_instance
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
partial.is_instance(<a href="#partial.is_instance-v">v</a>)
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
Returns True if v is a partial created using `make`.
|
|
|
|
|
|
|
|
**PARAMETERS**
|
|
|
|
|
|
|
|
|
|
|
|
| Name | Description | Default Value |
|
2021-10-27 13:13:59 +00:00
|
|
|
| :------------- | :------------- | :------------- |
|
|
|
|
| <a id="partial.is_instance-v"></a>v | The value to check. | none |
|
|
|
|
|
|
|
|
**RETURNS**
|
|
|
|
|
|
|
|
True if v was created by `make`, False otherwise.
|
2019-02-28 22:43:57 +00:00
|
|
|
|
|
|
|
|