27 lines
524 B
Markdown
27 lines
524 B
Markdown
|
|
<!-- Generated with Stardoc: http://skydoc.bazel.build -->
|
||
|
|
|
||
|
|
A test that verifies documenting functions in an input file under a local_repository.
|
||
|
|
|
||
|
|
<a id="min"></a>
|
||
|
|
|
||
|
|
## min
|
||
|
|
|
||
|
|
<pre>
|
||
|
|
min(<a href="#min-integers">integers</a>)
|
||
|
|
</pre>
|
||
|
|
|
||
|
|
Returns the minimum of given elements.
|
||
|
|
|
||
|
|
**PARAMETERS**
|
||
|
|
|
||
|
|
|
||
|
|
| Name | Description | Default Value |
|
||
|
|
| :------------- | :------------- | :------------- |
|
||
|
|
| <a id="min-integers"></a>integers | A list of integers. Must not be empty. | none |
|
||
|
|
|
||
|
|
**RETURNS**
|
||
|
|
|
||
|
|
The minimum integer in the given list.
|
||
|
|
|
||
|
|
|