It is not clear what exactly you are asking here. The code that you presented already supports assignment. Just do it and at will work (or at least it should compile). It makes absolutely no difference which side of the assignment operator your overloaded [] is used on. It will work in exactly the same way on left-hand side (LHS) as it does on the right-hand side (RHS) of the assignment (or as an operand of <<, as in your original post). Your [] returns a reference to an Object, and then the actual assignment is handled by the assignment operator of your Object type, meaning that the [] itself is not really involved in the actual assignment.
The real question here is how you want your [] to act in certain special cases. What is going to happen if your key is not present in the table? Reference to what Object is your lookup going to return in this case?
It is impossibe to figure out from what you posted. I see it returns a reference, so returning NULL is out of question. Does it insert a new, empty Object for the given key? If so, then you don't have to do anything. Your [] is already perfectly ready to be used on the LHS of the assigment. (This is how [] in std::map works, BTW)
In case your lookup returns a reference to a special "guard" Object, you have to take special steps. You probably don't want to assign anything to a "guard" object, so you have to "disable" its assignment operator somehow and you are done. The rest should work as is.
If your lookup throws an exception in case of a non-existent key, then you have to decide whether this is what you want when the [] is used on the LHS of an assignment. If so, then you don't need to do anything. If not, then it will take some extra work...
So, again, what happens if you pass a non-existent key to lookup?
P.S. Additionally, it would normally make more sense to declare the [] (and lookup) with either const HashedObj& parameter or just HashedObj parameter. Non-const reference, as in your example, looks strange and might lead to problems in some (actually, in most) cases. I'm surprized it works for you now...
HashedObjwhen you declare yourDictionaryfor use with string keys? Like"mykey"in your example above. – AndreyT Oct 24 at 18:38dict["mykey"]the compiler creates a temporarystringobject. A temporary object can't be passed tooperator[]since the latter accepts a non-const reference as a parameter. Non-const reference cannot be bound to a temporary. If it compiles, it's only because your compiler allows this as an extension (MSVC++, I'd guess). Again, youroperator[](andlookupfunction) should be declared withconst HashedObj¶meter. – AndreyT Oct 24 at 20:43string key = "mykey"; dict[key] = "something". I thought they would do the same thing, so I simplied it in my question. Obviously, I don't know what I'm doing :) I tried the dict["mykey"] and it wouldn't compile. Now I know why. Thanks. Things are starting to make sense now. – Matt Oct 24 at 21:19