Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
dc5fef6a
Commit
dc5fef6a
authored
19 years ago
by
Volker Reichelt
Committed by
Volker Reichelt
19 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* include/std/std_valarray.h: Fix grammar in comments.
From-SVN: r102479
parent
b92ba6ff
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
17 deletions
+21
-17
libstdc++-v3/ChangeLog
+4
-0
libstdc++-v3/include/std/std_valarray.h
+17
-17
No files found.
libstdc++-v3/ChangeLog
View file @
dc5fef6a
2005-07-28 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
* include/std/std_valarray.h: Fix grammar in comments.
2005-07-25 Geoffrey Keating <geoffk@apple.com>
* acinclude.m4 (GLIBCXX_ENABLE_SYMVERS): Handle darwin-export,
...
...
This diff is collapsed.
Click to expand it.
libstdc++-v3/include/std/std_valarray.h
View file @
dc5fef6a
...
...
@@ -155,7 +155,7 @@ namespace std
* @brief Assign elements to an array.
*
* Assign elements of array to values in @a v. Results are undefined
* if @a v
is not
the same size as this array.
* if @a v
does not have
the same size as this array.
*
* @param v Valarray to get values from.
*/
...
...
@@ -174,7 +174,7 @@ namespace std
* @brief Assign elements to an array subset.
*
* Assign elements of array to values in @a sa. Results are undefined
* if @a sa
is not
the same size as this array.
* if @a sa
does not have
the same size as this array.
*
* @param sa Array slice to get values from.
*/
...
...
@@ -184,7 +184,7 @@ namespace std
* @brief Assign elements to an array subset.
*
* Assign elements of array to values in @a ga. Results are undefined
* if @a ga
is not
the same size as this array.
* if @a ga
does not have
the same size as this array.
*
* @param ga Array slice to get values from.
*/
...
...
@@ -194,7 +194,7 @@ namespace std
* @brief Assign elements to an array subset.
*
* Assign elements of array to values in @a ma. Results are undefined
* if @a ma
is not
the same size as this array.
* if @a ma
does not have
the same size as this array.
*
* @param ma Array slice to get values from.
*/
...
...
@@ -204,7 +204,7 @@ namespace std
* @brief Assign elements to an array subset.
*
* Assign elements of array to values in @a ia. Results are undefined
* if @a ia
is not
the same size as this array.
* if @a ia
does not have
the same size as this array.
*
* @param ia Array slice to get values from.
*/
...
...
@@ -231,8 +231,8 @@ namespace std
* @brief Return an array subset.
*
* Returns a new valarray containing the elements of the array
* indicated by the slice argument. The new valarray
is the size of
* the input slice. @see slice.
* indicated by the slice argument. The new valarray
has the same size
*
as
the input slice. @see slice.
*
* @param s The source slice.
* @return New valarray containing elements in @a s.
...
...
@@ -243,8 +243,8 @@ namespace std
* @brief Return a reference to an array subset.
*
* Returns a new valarray containing the elements of the array
* indicated by the slice argument. The new valarray
is the size of
* the input slice. @see slice.
* indicated by the slice argument. The new valarray
has the same size
*
as
the input slice. @see slice.
*
* @param s The source slice.
* @return New valarray containing elements in @a s.
...
...
@@ -266,8 +266,8 @@ namespace std
* @brief Return a reference to an array subset.
*
* Returns a new valarray containing the elements of the array
* indicated by the gslice argument. The new valarray
i
s
* the s
ize of
the input gslice. @see gslice.
* indicated by the gslice argument. The new valarray
ha
s
* the s
ame size as
the input gslice. @see gslice.
*
* @param s The source gslice.
* @return New valarray containing elements in @a s.
...
...
@@ -448,8 +448,8 @@ namespace std
*
* A new valarray is constructed as a copy of this array with elements
* in shifted positions. For an element with index i, the new position
* is i - n. The new valarray
i
s the same size as the current one.
* New elements without a value are set to 0. Elements whos new
* is i - n. The new valarray
ha
s the same size as the current one.
* New elements without a value are set to 0. Elements whos
e
new
* position is outside the bounds of the array are discarded.
*
* Positive arguments shift toward index 0, discarding elements [0, n).
...
...
@@ -465,7 +465,7 @@ namespace std
*
* A new valarray is constructed as a copy of this array with elements
* in shifted positions. For an element with index i, the new position
* is (i - n) % size(). The new valarray
i
s the same size as the
* is (i - n) % size(). The new valarray
ha
s the same size as the
* current one. Elements that are shifted beyond the array bounds are
* shifted into the other end of the array. No elements are lost.
*
...
...
@@ -482,7 +482,7 @@ namespace std
*
* Returns a new valarray with elements assigned to the result of
* applying func to the corresponding element of this array. The new
* array
i
s the same size as this one.
* array
ha
s the same size as this one.
*
* @param func Function of Tp returning Tp to apply.
* @return New valarray with transformed elements.
...
...
@@ -494,7 +494,7 @@ namespace std
*
* Returns a new valarray with elements assigned to the result of
* applying func to the corresponding element of this array. The new
* array
i
s the same size as this one.
* array
ha
s the same size as this one.
*
* @param func Function of const Tp& returning Tp to apply.
* @return New valarray with transformed elements.
...
...
@@ -504,7 +504,7 @@ namespace std
/**
* @brief Resize array.
*
* Resize this array to
be
@a size and set all elements to @a c. All
* Resize this array to @a size and set all elements to @a c. All
* references and iterators are invalidated.
*
* @param size New array size.
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment