Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fmt
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
fmt
Commits
1aa98f8b
Unverified
Commit
1aa98f8b
authored
Sep 09, 2021
by
Roman-Koshelev
Committed by
GitHub
Sep 09, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Eliminate double copying in vformat_to_n (#2489)
parent
a58c1338
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
+40
-0
include/fmt/core.h
include/fmt/core.h
+40
-0
No files found.
include/fmt/core.h
View file @
1aa98f8b
...
...
@@ -879,6 +879,46 @@ class iterator_buffer final : public Traits, public buffer<T> {
auto
count
()
const
->
size_t
{
return
Traits
::
count
()
+
this
->
size
();
}
};
template
<
typename
T
>
class
iterator_buffer
<
T
*
,
T
,
fixed_buffer_traits
>
final
:
public
fixed_buffer_traits
,
public
buffer
<
T
>
{
private:
T
*
out_
;
enum
{
buffer_size
=
256
};
T
data_
[
buffer_size
];
protected:
void
grow
(
size_t
)
override
{
if
(
this
->
size
()
==
this
->
capacity
())
flush
();
}
void
flush
()
{
size_t
n
=
this
->
limit
(
this
->
size
());
if
(
this
->
data
()
==
out_
)
{
out_
+=
n
;
this
->
set
(
data_
,
buffer_size
);
}
this
->
clear
();
}
public:
explicit
iterator_buffer
(
T
*
out
,
size_t
n
=
buffer_size
)
:
fixed_buffer_traits
(
n
),
buffer
<
T
>
(
out
,
0
,
n
),
out_
(
out
)
{}
iterator_buffer
(
iterator_buffer
&&
other
)
:
fixed_buffer_traits
(
other
),
buffer
<
T
>
(
std
::
move
(
other
)),
out_
(
other
.
out_
)
{
if
(
this
->
data
()
!=
out_
)
{
this
->
set
(
data_
,
buffer_size
);
this
->
clear
();
}
}
~
iterator_buffer
()
{
flush
();
}
auto
out
()
->
T
*
{
flush
();
return
out_
;
}
auto
count
()
const
->
size_t
{
return
fixed_buffer_traits
::
count
()
+
this
->
size
();
}
};
template
<
typename
T
>
class
iterator_buffer
<
T
*
,
T
>
final
:
public
buffer
<
T
>
{
protected:
void
grow
(
size_t
)
override
{}
...
...
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