Packages

trait PairFunction[T, K, V] extends Serializable

A function that returns key-value pairs (Tuple2<K, V>), and can be used to construct PairRDDs.

Annotations
@FunctionalInterface()
Source
PairFunction.java
Linear Supertypes
Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PairFunction
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def call(t: T): (K, V)