@@ -11,6 +11,7 @@ import Foundation
1111
1212extension CoreDataRepository {
1313 /// Execute a NSBatchInsertRequest against the store.
14+ @inlinable
1415 public func insert(
1516 _ request: NSBatchInsertRequest ,
1617 transactionAuthor: String ? = nil
@@ -149,6 +150,7 @@ extension CoreDataRepository {
149150 }
150151
151152 /// Execute a NSBatchUpdateRequest against the store.
153+ @inlinable
152154 public func update(
153155 _ request: NSBatchUpdateRequest ,
154156 transactionAuthor: String ? = nil
@@ -238,6 +240,7 @@ extension CoreDataRepository {
238240 }
239241
240242 /// Execute a NSBatchDeleteRequest against the store.
243+ @inlinable
241244 public func delete(
242245 _ request: NSBatchDeleteRequest ,
243246 transactionAuthor: String ? = nil
@@ -256,6 +259,7 @@ extension CoreDataRepository {
256259 /// Delete from the store with a batch of unmanaged models.
257260 ///
258261 /// This operation is non-atomic. Each instance may succeed or fail individually.
262+ @inlinable
259263 public func delete(
260264 urls: [ URL ] ,
261265 transactionAuthor: String ? = nil
@@ -295,6 +299,7 @@ extension CoreDataRepository {
295299 }
296300
297301 /// Delete from the store with a batch of unmanaged models.
302+ @inlinable
298303 public func deleteAtomically(
299304 urls: [ URL ] ,
300305 transactionAuthor: String ? = nil
0 commit comments