59 lines
1.4 KiB
Markdown
Executable File
59 lines
1.4 KiB
Markdown
Executable File
<!-- Generated with Stardoc: http://skydoc.bazel.build -->
|
|
|
|
<a name="#my_namespace.assert_non_empty"></a>
|
|
|
|
## my_namespace.assert_non_empty
|
|
|
|
<pre>
|
|
my_namespace.assert_non_empty(<a href="#my_namespace.assert_non_empty-some_list">some_list</a>, <a href="#my_namespace.assert_non_empty-other_list">other_list</a>)
|
|
</pre>
|
|
|
|
Asserts the two given lists are not empty.
|
|
|
|
**PARAMETERS**
|
|
|
|
|
|
| Name | Description | Default Value |
|
|
| :-------------: | :-------------: | :-------------: |
|
|
| some_list | The first list | none |
|
|
| other_list | The second list | none |
|
|
|
|
|
|
<a name="#my_namespace.min"></a>
|
|
|
|
## my_namespace.min
|
|
|
|
<pre>
|
|
my_namespace.min(<a href="#my_namespace.min-integers">integers</a>)
|
|
</pre>
|
|
|
|
Returns the minimum of given elements.
|
|
|
|
**PARAMETERS**
|
|
|
|
|
|
| Name | Description | Default Value |
|
|
| :-------------: | :-------------: | :-------------: |
|
|
| integers | A list of integers. Must not be empty. | none |
|
|
|
|
|
|
<a name="#my_namespace.join_strings"></a>
|
|
|
|
## my_namespace.join_strings
|
|
|
|
<pre>
|
|
my_namespace.join_strings(<a href="#my_namespace.join_strings-strings">strings</a>, <a href="#my_namespace.join_strings-delimiter">delimiter</a>)
|
|
</pre>
|
|
|
|
Joins the given strings with a delimiter.
|
|
|
|
**PARAMETERS**
|
|
|
|
|
|
| Name | Description | Default Value |
|
|
| :-------------: | :-------------: | :-------------: |
|
|
| strings | A list of strings to join. | none |
|
|
| delimiter | The delimiter to use | <code>", "</code> |
|
|
|
|
|