indexOf

Returns the index of the first match in str, failing once length is reached. Note that we return 'length' for failure and a 0-based index on success

size_t
indexOf
(
const(char)* str
,
char match
,
size_t length
)

Meta