• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<!-- Generated with Stardoc: http://skydoc.bazel.build -->
2
3<a name="#check_struct_default_values"></a>
4
5## check_struct_default_values
6
7<pre>
8check_struct_default_values(<a href="#check_struct_default_values-struct_no_args">struct_no_args</a>, <a href="#check_struct_default_values-struct_arg">struct_arg</a>, <a href="#check_struct_default_values-struct_args">struct_args</a>, <a href="#check_struct_default_values-struct_int_args">struct_int_args</a>,
9                            <a href="#check_struct_default_values-struct_struct_args">struct_struct_args</a>)
10</pre>
11
12Checks the default values of structs.
13
14**PARAMETERS**
15
16
17| Name  | Description | Default Value |
18| :-------------: | :-------------: | :-------------: |
19| struct_no_args |  struct with no arguments   |  <code>struct()</code> |
20| struct_arg |  struct with one argument   |  <code>struct(foo = "bar")</code> |
21| struct_args |  struct with multiple arguments   |  <code>struct(bar = "foo", foo = "bar")</code> |
22| struct_int_args |  struct with int arguments   |  <code>struct(one = 1, three = 3, two = 2)</code> |
23| struct_struct_args |  struct with struct arguments   |  <code>struct(multiple = struct(one = 1, three = 3, two = 2), none = struct(), one = struct(foo = "bar"))</code> |
24
25
26