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 str
in 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 String
in 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 string
in 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 String
in 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 String
in 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

in 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

int
An error code.
See id3BiosealError file for the list of possible error codes.