Concatenates this and other with a space in between.
Equivalent to this + " " + other.
this + " " + other
>>> Document("hello") * "world"hello world
Convenience method. See plus.