Fuction which returns true if comparewith is found somewhere in inputVector
function findIfIntegerVector input Integer[:] inputVector = {6, 1, 2, 3, 4, 5}; input Integer compareWith = 2; output Boolean isFound; end findIfIntegerVector;