Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Algorithms Library Toolkit Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Algorithms Library Toolkit
Algorithms Library Toolkit Core
Commits
bb7717ca
Commit
bb7717ca
authored
9 years ago
by
Jan Trávníček
Browse files
Options
Downloads
Patches
Plain Diff
add printing capability to ptr_vector
parent
1b1941aa
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
alib2std/src/extensions/vector.hpp
+15
-0
15 additions, 0 deletions
alib2std/src/extensions/vector.hpp
with
15 additions
and
0 deletions
alib2std/src/extensions/vector.hpp
+
15
−
0
View file @
bb7717ca
...
@@ -177,6 +177,21 @@ std::ostream& operator<<(std::ostream& out, const std::vector<T>& vector) {
...
@@ -177,6 +177,21 @@ std::ostream& operator<<(std::ostream& out, const std::vector<T>& vector) {
return
out
;
return
out
;
}
}
template
<
class
T
>
std
::
ostream
&
operator
<<
(
std
::
ostream
&
out
,
const
std
::
ptr_vector
<
T
>&
vector
)
{
out
<<
"["
;
bool
first
=
true
;
for
(
const
T
&
item
:
vector
)
{
if
(
!
first
)
out
<<
", "
;
first
=
false
;
out
<<
item
;
}
out
<<
"]"
;
return
out
;
}
template
<
class
T
>
template
<
class
T
>
struct
compare
<
vector
<
T
>>
{
struct
compare
<
vector
<
T
>>
{
int
operator
()(
const
vector
<
T
>&
first
,
const
vector
<
T
>&
second
)
const
{
int
operator
()(
const
vector
<
T
>&
first
,
const
vector
<
T
>&
second
)
const
{
...
...
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