std.string.indexOf  - multiple declarations
				Function indexOf
Searches for character in range.
						
				ptrdiff_t indexOf(Range)
				(
				
				  Range s,
				
				  dchar c,
				
				  CaseSensitive cs = Yes
				)
				
				if (isInputRange!Range && isSomeChar!(ElementType!Range) && !isSomeString!Range);
				
				
				ptrdiff_t indexOf(C)
				(
				
				  scope const(C)[] s,
				
				  dchar c,
				
				  CaseSensitive cs = Yes
				)
				
				if (isSomeChar!C);
				
				
				ptrdiff_t indexOf(Range)
				(
				
				  Range s,
				
				  dchar c,
				
				  size_t startIdx,
				
				  CaseSensitive cs = Yes
				)
				
				if (isInputRange!Range && isSomeChar!(ElementType!Range) && !isSomeString!Range);
				
				
				ptrdiff_t indexOf(C)
				(
				
				  scope const(C)[] s,
				
				  dchar c,
				
				  size_t startIdx,
				
				  CaseSensitive cs = Yes
				)
				
				if (isSomeChar!C);
						
					
				Parameters
| Name | Description | 
|---|---|
| s | string or InputRange of characters to search in correct UTF format | 
| c | character to search for | 
| startIdx | starting index to a well-formed code point | 
| cs | YesorNo | 
Returns
the index of the first occurrence of c in s with
        respect to the start index startIdx. If c
        is not found, then -1 is returned.
        If c is found the value of the returned index is at least
        startIdx.
        If the parameters are not valid UTF, the result will still
        be in the range [-1 .. s.length], but will not be reliable otherwise.
Throws
If the sequence starting at startIdx does not represent a well
        formed codepoint, then a UTFException may be thrown.
See Also
Example
import stdExample
import stdFunction indexOf
Searches for substring in s.
						
				ptrdiff_t indexOf(Range, Char)
				(
				
				  Range s,
				
				  const(Char)[] sub
				
				)
				
				if (isForwardRange!Range && isSomeChar!(ElementEncodingType!Range) && isSomeChar!Char);
				
				
				ptrdiff_t indexOf(Range, Char)
				(
				
				  Range s,
				
				  const(Char)[] sub,
				
				  in CaseSensitive cs
				
				)
				
				if (isForwardRange!Range && isSomeChar!(ElementEncodingType!Range) && isSomeChar!Char);
				
				
				ptrdiff_t indexOf(Char1, Char2)
				(
				
				  const(Char1)[] s,
				
				  const(Char2)[] sub,
				
				  in size_t startIdx
				
				) @safe
				
				if (isSomeChar!Char1 && isSomeChar!Char2);
				
				
				ptrdiff_t indexOf(Char1, Char2)
				(
				
				  const(Char1)[] s,
				
				  const(Char2)[] sub,
				
				  in size_t startIdx,
				
				  in CaseSensitive cs
				
				) @safe
				
				if (isSomeChar!Char1 && isSomeChar!Char2);
						
					
				Parameters
| Name | Description | 
|---|---|
| s | string or ForwardRange of characters to search in correct UTF format | 
| sub | substring to search for | 
| startIdx | the index into s to start searching from | 
| cs | Yes(default) orNo | 
Returns
the index of the first occurrence of sub in s with
        respect to the start index startIdx. If sub is not found,
        then -1 is returned.
        If the arguments are not valid UTF, the result will still
        be in the range [-1 .. s.length], but will not be reliable otherwise.
        If sub is found the value of the returned index is at least
        startIdx.
Throws
If the sequence starting at startIdx does not represent a well
        formed codepoint, then a UTFException may be thrown.
Bugs
Does not work with case insensitive strings where the mapping of tolower and toupper is not 1:1.
Example
import stdExample
import stdAuthors
Walter Bright, Andrei Alexandrescu, Jonathan M Davis, and David L. 'SpottedTiger' Davis