functionarrayStringEqual
Check if two vectors of strings are equal
Extends from Modelica.Icons.Function (Icon for functions).
Information
Examples:
arrayStringEqual({"a","bc"}, {"a","bc"}) returns true, but
arrayStringEqual({"a","bc"}, {"a","b"}) and arrayStringEqual({"a","b"}, {"a","b","c"}) each return false.
Inputs
| Type | Name | Default | Description |
|---|---|---|---|
| String[:] | u1 | First string vector | |
| String[:] | u2 | Second string vector |
Outputs
| Type | Name | Default | Description |
|---|---|---|---|
| Boolean | equal | <html><code>true</code>, if all of the entries are equal</html> |