plus
>>> Document("hello") + "World"
helloWorld
Content copied to clipboard
Convenience method that automatically converts other to a Document.
Allows the use of String literals when generating Documents. For example,
Document("hello") + Document("world")
Content copied to clipboard
can instead be written as
Document("hello") + "world"
Content copied to clipboard
Unfortunately, the first call to Document.invoke cannot be avoided.