cf.Domain.copy

Domain.copy(data=True)[source]

Return a deep copy.

d.copy() is equivalent to copy.deepcopy(d).

New in version 1.7.0.

See also

fromconstructs

Parameters:
data: bool, optional

If False then do not copy data. By default data are copied.

Returns:

The deep copy.

Examples:

>>> e = d.copy()