• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<!-- Generated with Stardoc: http://skydoc.bazel.build -->
2
3<a name="#my_namespace.assert_non_empty"></a>
4
5## my_namespace.assert_non_empty
6
7<pre>
8my_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>)
9</pre>
10
11Asserts the two given lists are not empty.
12
13**PARAMETERS**
14
15
16| Name  | Description | Default Value |
17| :-------------: | :-------------: | :-------------: |
18| some_list |  The first list   |  none |
19| other_list |  The second list   |  none |
20
21
22<a name="#my_namespace.min"></a>
23
24## my_namespace.min
25
26<pre>
27my_namespace.min(<a href="#my_namespace.min-integers">integers</a>)
28</pre>
29
30Returns the minimum of given elements.
31
32**PARAMETERS**
33
34
35| Name  | Description | Default Value |
36| :-------------: | :-------------: | :-------------: |
37| integers |  A list of integers. Must not be empty.   |  none |
38
39
40<a name="#my_namespace.join_strings"></a>
41
42## my_namespace.join_strings
43
44<pre>
45my_namespace.join_strings(<a href="#my_namespace.join_strings-strings">strings</a>, <a href="#my_namespace.join_strings-delimiter">delimiter</a>)
46</pre>
47
48Joins the given strings with a delimiter.
49
50**PARAMETERS**
51
52
53| Name  | Description | Default Value |
54| :-------------: | :-------------: | :-------------: |
55| strings |  A list of strings to join.   |  none |
56| delimiter |  The delimiter to use   |  <code>", "</code> |
57
58
59