Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
spark
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs525-sp18-g07
spark
Commits
ab33e27c
Commit
ab33e27c
authored
12 years ago
by
Mark Hamstra
Browse files
Options
Downloads
Patches
Plain Diff
constructorOfA -> constructA in doc comments
parent
9784fc1f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/src/main/scala/spark/RDD.scala
+4
-4
4 additions, 4 deletions
core/src/main/scala/spark/RDD.scala
with
4 additions
and
4 deletions
core/src/main/scala/spark/RDD.scala
+
4
−
4
View file @
ab33e27c
...
...
@@ -366,7 +366,7 @@ abstract class RDD[T: ClassManifest](
/**
* Maps f over this RDD, where f takes an additional parameter of type A. This
* additional parameter is produced by construct
orOf
A, which is called in each
* additional parameter is produced by constructA, which is called in each
* partition with the index of that partition.
*/
def
mapWith
[
A:
ClassManifest
,
U:
ClassManifest
](
constructA
:
Int
=>
A
,
preservesPartitioning
:
Boolean
=
false
)
...
...
@@ -380,7 +380,7 @@ abstract class RDD[T: ClassManifest](
/**
* FlatMaps f over this RDD, where f takes an additional parameter of type A. This
* additional parameter is produced by construct
orOf
A, which is called in each
* additional parameter is produced by constructA, which is called in each
* partition with the index of that partition.
*/
def
flatMapWith
[
A:
ClassManifest
,
U:
ClassManifest
](
constructA
:
Int
=>
A
,
preservesPartitioning
:
Boolean
=
false
)
...
...
@@ -394,7 +394,7 @@ abstract class RDD[T: ClassManifest](
/**
* Applies f to each element of this RDD, where f takes an additional parameter of type A.
* This additional parameter is produced by construct
orOf
A, which is called in each
* This additional parameter is produced by constructA, which is called in each
* partition with the index of that partition.
*/
def
foreachWith
[
A:
ClassManifest
](
constructA
:
Int
=>
A
)
...
...
@@ -408,7 +408,7 @@ abstract class RDD[T: ClassManifest](
/**
* Filters this RDD with p, where p takes an additional parameter of type A. This
* additional parameter is produced by construct
orOf
A, which is called in each
* additional parameter is produced by constructA, which is called in each
* partition with the index of that partition.
*/
def
filterWith
[
A:
ClassManifest
](
constructA
:
Int
=>
A
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment