Skip to content

Commit

Permalink
Patch
Browse files Browse the repository at this point in the history
  • Loading branch information
muukii committed Apr 15, 2024
1 parent dcbd21a commit 6e3f3ba
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions Sources/VergeNormalization/Tables/Tables.Hash.swift
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,8 @@ extension Tables {
updatedMarker.increment()
}

public func map<U>(_ transform: (Entity) throws -> U) rethrows -> [U] {
try storage.values.map(transform)
}

public func filter(_ isIncluded: (Entity) throws -> Bool) rethrows -> [Entity] {
try storage.values.filter(isIncluded)
public var values: TreeDictionary<Entity.EntityID, Entity>.Values {
storage.values
}

}
Expand Down

0 comments on commit 6e3f3ba

Please sign in to comment.