collection
Utilities related to measurement collection.
flatten(*collections)
Flatten a variadic number of collections.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
collections
|
Union[Any, Iterable[Any]]
|
The collections to flatten |
()
|
Returns:
| Type | Description |
|---|---|
List[Any]
|
The flattened collection |
Source code in mlte/measurement/utility/collection.py
6 7 8 9 10 11 12 13 14 15 16 17 18 | |