StringArray.contains Method¶
Module: StringArray
Definition¶
Returns a value indicating whether a specified string occurs in this string array.
contains(self, item: str) -> bool
Parameters
item
strin The string to seek.
Returns
bool
true if the item parameter occurs within this string array; otherwise, false.
Exceptions
An error has occurred during Bioseal Library execution.
bool contains(String? item)
Parameters
item
Stringin The string to seek.
Returns
bool
true if the item parameter occurs within this string array; otherwise, false.
Exceptions
An error has occurred during Bioseal Library execution.
public bool Contains(string item)
Parameters
item
stringin The string to seek.
Returns
bool
true if the item parameter occurs within this string array; otherwise, false.
Exceptions
An error has occurred during Bioseal Library execution.
public boolean contains(String item) throws BiosealException
Parameters
item
Stringin The string to seek.
Returns
boolean
true if the item parameter occurs within this string array; otherwise, false.
Exceptions
An error has occurred during Bioseal Library execution.
public func contains(item: String) throws -> Bool
Parameters
item
Stringin The string to seek.
Returns
Bool
true if the item parameter occurs within this string array; otherwise, false.
Exceptions
An error has occurred during Bioseal Library execution.
int id3BiosealStringArray_Contains (
ID3_BIOSEAL_STRING_ARRAY hStringArray,
const char * item,
bool * result)
Parameters
hStringArray
ID3_BIOSEAL_STRING_ARRAYin Handle to the StringArray object.item
const char *in The string to seek.result
bool *out true if the item parameter occurs within this string array; otherwise, false.
Returns