fun copy()

in core/src/main/kotlin/motif/core/State.kt [109:120]


  fun copy(): State {
    return State(
        sinkToSources.copy(),
        sourceToSinks.copy(),
        unsatisfied.toMutableSet(),
        errors.toMutableList(),
        sinks.copy(),
        irTypeToSinks.copy(),
        irTypeToSources.copy(),
        exposeNeeded.toMutableSet(),
        visibleSinks.copy())
  }