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

TypeNameDefaultDescription
String[:]u1First string vector
String[:]u2Second string vector

Outputs

TypeNameDefaultDescription
Booleanequal<html><code>true</code>, if all of the entries are equal</html>