Diff

public struct Diff<T1, T2>

Undocumented

  • Undocumented

    Declaration

    Swift

    public let common: [(T1, T2)]
  • Undocumented

    Declaration

    Swift

    public let removed: [T1]
  • Undocumented

    Declaration

    Swift

    public let inserted: [T2]
  • Undocumented

    Declaration

    Swift

    public init(common: [(T1, T2)] = [], removed: [T1] = [], inserted: [T2] = [])