func copy()

in MobiusExtras/Source/Copyable.swift [19:23]


    func copy(with mutator: (inout Self) -> Void) -> Self {
        var copy = self
        mutator(&copy)
        return copy
    }