Adam D. Ruppe 2013-01-11 18:04:43 -05:00
commit 5fa0b8948b
1 changed files with 2 additions and 0 deletions

View File

@ -56,6 +56,8 @@ struct CreatedQuery {
CreatedQuery opBinaryRight(string op)(string left) if(op=="~") {
CreatedQuery res=this;
if(left.length && query.length)
left~=prepend;
res.query=left~res.query;
return res;
}