RCString.opBinaryRight

Undocumented in source. Be warned that the author may not have intended to support it.
  1. typeof(this) opBinaryRight(string rhs)
  2. typeof(this) opBinaryRight(C c)
  3. typeof(this) opBinaryRight(R lhs)
  4. auto opBinaryRight(string rhs)
    struct RCString
    opBinaryRight
    (
    string op
    )
    (
    string rhs
    )
    if (
    op == "in"
    )

Examples

auto r1 = RCString("abc");
auto r2 = RCString("def");
auto rtext = RCString("abcdefgh");
//import std.stdio;
//(r1 in rtext).writeln;
//(r1 in rtext).writeln;

Meta