String.this - multiple declarations

Function String.this

Construct from D string

this (
  string s
);

Function String.this

Construct from zero-terminated UTF-16 LE string

this (
  const(wchar)* wStr
);

Function String.this

Construct from zero-terminated C string (ASCII or UTF8)

this (
  const(char)* cStr
);

Function String.this

Construct from an InputStream

this (
  InputStream istrm
);