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
16a2286d
Commit
16a2286d
authored
11 years ago
by
Reynold Xin
Browse files
Options
Downloads
Patches
Plain Diff
Return the vector itself for trim and resize method in PrimitiveVector.
parent
c30979c7
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/src/main/scala/org/apache/spark/util/collection/PrimitiveVector.scala
+4
-3
4 additions, 3 deletions
...la/org/apache/spark/util/collection/PrimitiveVector.scala
with
4 additions
and
3 deletions
core/src/main/scala/org/apache/spark/util/collection/PrimitiveVector.scala
+
4
−
3
View file @
16a2286d
...
@@ -48,16 +48,17 @@ class PrimitiveVector[@specialized(Long, Int, Double) V: ClassManifest](initialS
...
@@ -48,16 +48,17 @@ class PrimitiveVector[@specialized(Long, Int, Double) V: ClassManifest](initialS
def
size
:
Int
=
_numElements
def
size
:
Int
=
_numElements
/** Get the underlying array backing this vector. */
/** Get
s
the underlying array backing this vector. */
def
array
:
Array
[
V
]
=
_array
def
array
:
Array
[
V
]
=
_array
/** Trims this vector so that the capacity is equal to the size. */
/** Trims this vector so that the capacity is equal to the size. */
def
trim
()
:
Unit
=
resize
(
size
)
def
trim
()
:
PrimitiveVector
[
V
]
=
resize
(
size
)
/** Resizes the array, dropping elements if the total length decreases. */
/** Resizes the array, dropping elements if the total length decreases. */
def
resize
(
newLength
:
Int
)
{
def
resize
(
newLength
:
Int
)
:
PrimitiveVector
[
V
]
=
{
val
newArray
=
new
Array
[
V
](
newLength
)
val
newArray
=
new
Array
[
V
](
newLength
)
_array
.
copyToArray
(
newArray
)
_array
.
copyToArray
(
newArray
)
_array
=
newArray
_array
=
newArray
this
}
}
}
}
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