findCharIndex

Returns the index of the first occurence of c. If no c is found then the length of the string is returned.

  1. size_t findCharIndex(const(char)* str, char c)
    size_t
    findCharIndex
    (
    char sentinal = '\0'
    )
    (
    const(char)* str
    ,
    char c
    )
  2. size_t findCharIndex(const(char)* str, const(char)* limit, char c)
  3. size_t findCharIndex(const(char)[] str, char c)

Meta