Skip to content

Commit

Permalink
⚡ WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
muukii committed Sep 8, 2023
1 parent cb994ae commit ebf4149
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Sources/Verge/Store/Changes.swift
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ extension Changes {
return nil
}

return try perform(result)
return try perform((repeat each result))
}

/**
Expand Down
5 changes: 2 additions & 3 deletions Sources/Verge/Store/Comparer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,8 @@ extension Comparison {

public static func equality<each T: Equatable>() -> Self where Self == AnyEqualityComparison<(repeat each T)> {
return .init { a, b in
// let hoge = repeat each a
// each a == each b
return false

(repeat each a) == (repeat each b)
}
}

Expand Down

0 comments on commit ebf4149

Please sign in to comment.