Download free for 30 days
Sign in
Upload
Language (EN)
Support
Business
Mobile
Social Media
Marketing
Technology
Art & Photos
Career
Design
Education
Presentations & Public Speaking
Government & Nonprofit
Healthcare
Internet
Law
Leadership & Management
Automotive
Engineering
Software
Recruiting & HR
Retail
Sales
Services
Science
Small Business & Entrepreneurship
Food
Environment
Economy & Finance
Data & Analytics
Investor Relations
Sports
Spiritual
News & Politics
Travel
Self Improvement
Real Estate
Entertainment & Humor
Health & Medicine
Devices & Hardware
Lifestyle
Change Language
Language
English
Español
Português
Français
Deutsche
Cancel
Save
Submit search
EN
Uploaded by
진화 손
PDF, PPTX
9 views
C++ 20 Efficient access to std::basic_stringbuf’s buffer
C++ 20 Efficient access to std::basic_stringbuf’s buffer.
Software
◦
Read more
0
Save
Share
Embed
Embed presentation
Download
Download as PDF, PPTX
1
/ 5
2
/ 5
3
/ 5
4
/ 5
5
/ 5
More Related Content
PDF
[C++ 20][P0325R4] std::to_array() 내용 정리.
by
진화 손
PDF
C++20 std::execution::unseq.pdf
by
진화 손
PPTX
C++20 constexpr default constructor of std::atomic and std::atomic_flag
by
진화 손
PDF
C++20 Remove std::weak_equality and std::strong_equality.pdf
by
진화 손
PDF
C++ 20 Make stateful allocator propagation more consistent for operator+(basi...
by
진화 손
PPTX
[C++ 20] [P0645R10] Text formatting 내용 정리
by
진화 손
PPTX
[C++ 20] [P1035R7] Input range adaptors.
by
진화 손
PDF
C++ 20 class template argument deduction for alias templates
by
진화 손
[C++ 20][P0325R4] std::to_array() 내용 정리.
by
진화 손
C++20 std::execution::unseq.pdf
by
진화 손
C++20 constexpr default constructor of std::atomic and std::atomic_flag
by
진화 손
C++20 Remove std::weak_equality and std::strong_equality.pdf
by
진화 손
C++ 20 Make stateful allocator propagation more consistent for operator+(basi...
by
진화 손
[C++ 20] [P0645R10] Text formatting 내용 정리
by
진화 손
[C++ 20] [P1035R7] Input range adaptors.
by
진화 손
C++ 20 class template argument deduction for alias templates
by
진화 손
More from 진화 손
PDF
C++20 Coroutine
by
진화 손
PDF
C++17 std::byte
by
진화 손
PDF
C++20 Utility functions to implement uses-allocator construction
by
진화 손
PDF
C++ 20 std__reference_wrapper for incomplete types
by
진화 손
PDF
C++ 20 Unevaluated asm-declaration in constexpr functions
by
진화 손
PDF
C++20 std::map::contains
by
진화 손
PDF
C++20 Atomic std::shared_ptr and std::weak_ptr
by
진화 손
PDF
C++20 Attributes [[likely]] and [[unlikely]]
by
진화 손
PDF
C++ 20 Relaxing the range-for loop customization point finding rules
by
진화 손
PDF
C++20 Library support for operator<=> <compare>
by
진화 손
PDF
C++20 Concepts library
by
진화 손
PDF
C++20 Comparing unordered containers
by
진화 손
PDF
C++ 20 constexpr for algorithm and utility
by
진화 손
PDF
C++ 20 Lambdas in unevaluated contexts
by
진화 손
PDF
C++17 init-statements for if and switch
by
진화 손
PDF
C++17 Aggregate classes with base classes
by
진화 손
PDF
C++ 20 Relaxing the structured bindings customization point finding rules
by
진화 손
PDF
C++20 explicit(bool)
by
진화 손
PDF
C++20 Default member initializers for bit-fields
by
진화 손
PDF
C++ 20 Stronger Unicode requirements
by
진화 손
C++20 Coroutine
by
진화 손
C++17 std::byte
by
진화 손
C++20 Utility functions to implement uses-allocator construction
by
진화 손
C++ 20 std__reference_wrapper for incomplete types
by
진화 손
C++ 20 Unevaluated asm-declaration in constexpr functions
by
진화 손
C++20 std::map::contains
by
진화 손
C++20 Atomic std::shared_ptr and std::weak_ptr
by
진화 손
C++20 Attributes [[likely]] and [[unlikely]]
by
진화 손
C++ 20 Relaxing the range-for loop customization point finding rules
by
진화 손
C++20 Library support for operator<=> <compare>
by
진화 손
C++20 Concepts library
by
진화 손
C++20 Comparing unordered containers
by
진화 손
C++ 20 constexpr for algorithm and utility
by
진화 손
C++ 20 Lambdas in unevaluated contexts
by
진화 손
C++17 init-statements for if and switch
by
진화 손
C++17 Aggregate classes with base classes
by
진화 손
C++ 20 Relaxing the structured bindings customization point finding rules
by
진화 손
C++20 explicit(bool)
by
진화 손
C++20 Default member initializers for bit-fields
by
진화 손
C++ 20 Stronger Unicode requirements
by
진화 손
C++ 20 Efficient access to std::basic_stringbuf’s buffer
1.
Efficient access to std::basic_stringbuf’s
buffer https://en.cppreference.com/w/cpp/io/basic_stringbuf
2.
생성자(변경) 생성자에서 allocator 넘길
수 있음
3.
str(변경) 1 : 버퍼
내의 문자열의 복사본을 반환했었음 2 : allocator 로 생성하여 복사 반환 3 : 이동으로 반환 4,5,6 : get 이 아니라 set 의 역할을 함
4.
view(추가) 복사없이 읽기 전용으로
문자열을 반환한다
5.
swap 에 noexcept
추가 (변경) allocator 의 복사본 반환 (추가)
Download