You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -128,15 +135,17 @@ public class JSONPatch: Codable {
128
135
/// a patch inplace the result is not atomic, if an error occurs then the
129
136
/// json object may be left in a partial state. If false then a copy of
130
137
/// the json document is created and the patch applied to the copy.
138
+
/// - ignoreNonexistentValues: if true, all references to non existent values will be ignored and the patch will continue applying all remaining operations
131
139
/// - Returns: A transformed json document with the patch applied.
@@ -151,15 +160,17 @@ public class JSONPatch: Codable {
151
160
/// If nil then the patch is applied directly to the whole json document.
152
161
/// - readingOptions: The options given to JSONSerialization to parse the json data.
153
162
/// - writingOptions: The options given to JSONSerialization to write the result to data.
163
+
/// - ignoreNonexistentValues: if true, all references to non existent values will be ignored and the patch will continue applying all remaining operations
154
164
/// - Returns: The transformed json document as data.
0 commit comments