@@ -229,6 +229,11 @@ setGeneric("zipWithUniqueId", function(x) { standardGeneric("zipWithUniqueId") }
229
229
230
230
231
231
# ########### Binary Functions #############
232
+
233
+ # ' @rdname cartesian
234
+ # ' @export
235
+ setGeneric ("cartesian ", function(x, other) { standardGeneric("cartesian") })
236
+
232
237
# ' @rdname countByKey
233
238
# ' @export
234
239
setGeneric ("countByKey ", function(x) { standardGeneric("countByKey") })
@@ -237,10 +242,6 @@ setGeneric("countByKey", function(x) { standardGeneric("countByKey") })
237
242
# ' @export
238
243
setGeneric ("flatMapValues ", function(X, FUN) { standardGeneric("flatMapValues") })
239
244
240
- # ' @rdname cartesian
241
- # ' @export
242
- setGeneric ("cartesian ", function(x, other) { standardGeneric("cartesian") })
243
-
244
245
# ' @rdname intersection
245
246
# ' @export
246
247
setGeneric ("intersection ", function(x, other, numPartitions = 1L) {
@@ -258,10 +259,6 @@ setGeneric("lookup", function(x, key) { standardGeneric("lookup") })
258
259
# ' @export
259
260
setGeneric ("mapValues ", function(X, FUN) { standardGeneric("mapValues") })
260
261
261
- # ' @rdname values
262
- # ' @export
263
- setGeneric ("values ", function(x) { standardGeneric("values") })
264
-
265
262
# ' @rdname sampleByKey
266
263
# ' @export
267
264
setGeneric ("sampleByKey ",
@@ -367,6 +364,7 @@ setGeneric("subtractByKey",
367
364
standardGeneric(" subtractByKey" )
368
365
})
369
366
367
+
370
368
# ################## Broadcast Variable Methods #################
371
369
372
370
# ' @rdname broadcast
@@ -389,6 +387,10 @@ setGeneric("dtypes", function(x) { standardGeneric("dtypes") })
389
387
# ' @export
390
388
setGeneric ("explain ", function(x, ...) { standardGeneric("explain") })
391
389
390
+ # ' @rdname except
391
+ # ' @export
392
+ setGeneric ("except ", function(x, y) { standardGeneric("except") })
393
+
392
394
# ' @rdname filter
393
395
# ' @export
394
396
setGeneric ("filter ", function(x, condition) { standardGeneric("filter") })
0 commit comments