Bundle.opBinary

Add two bundles (this and rBundle)

class Bundle
@trusted immutable
immutable(Bundle)
opBinary
(
string op
)
(
immutable Bundle rBundle
)
if (
op == "+"
)

Return Value

Type: immutable(Bundle)

New Configuration bundle with data from this bundle and rBundle bundle

Throws

ConfException

Examples

auto bundle1 = ConfBundle("./conf1/receiver1.conf"); auto bundle2 = ConfBundle(confArray); auto bundle = bundle1 + bundle2;

Meta