Table of Contents

1 General [intro]
1.1 Scope [intro.scope]
1.2 Normative references [intro.refs]
1.3 Definitions [intro.defs]
1.4 Syntax notation [syntax]
1.5 The C++ memory model [intro.memory]
1.6 Processor compliance [intro.compliance]
1.7 Program execution [intro.execution]
2 Lexical conventions [lex]
2.1 Phases of translation [lex.phases]
2.2 Trigraph sequences [lex.trigraph]
2.3 Preprocessing tokens [lex.pptoken]
2.4 Digraph sequences [lex.digraph]
2.5 Tokens [lex.token]
2.6 Comments [lex.comment]
2.7 Identifiers [lex.name]
2.8 Keywords [lex.key]
2.9 Literals [lex.literal]
2.9.1 Integer literals [lex.icon]
2.9.2 Character literals [lex.ccon]
2.9.3 Floating literals [lex.fcon]
2.9.4 String literals [lex.string]
2.9.5 Boolean literals [lex.bool]
3 Basic concepts [basic]
3.1 Declarations and definitions [basic.def]
3.2 One definition rule [basic.def.odr]
3.3 Declarative regions and scopes [basic.scope]
3.3.1 Local scope [basic.scope.local]
3.3.2 Function prototype scope [basic.scope.proto]
3.3.3 Function scope
3.3.4 Namespace scope [basic.scope.namespace]
3.3.5 Class scope [basic.scope.class]
3.3.6 Name hiding [basic.scope.hiding]
3.3.7 Explicit qualification [basic.scope.exqual]
3.3.8 Elaborated type specifier [basic.scope.elab]
3.3.9 Point of declaration [basic.scope.pdecl]
3.4 Program and linkage [basic.link]
3.5 Start and termination [basic.start]
3.5.1 Main function [basic.start.main]
3.5.2 Initialization of non-local objects [basic.start.init]
3.5.3 Termination [basic.start.term]
3.6 Storage duration [basic.stc]
3.6.1 Static storage duration [basic.stc.static]
3.6.2 Automatic storage duration [basic.stc.auto]
3.6.3 Dynamic storage duration [basic.stc.dynamic]
3.6.3.1 Allocation functions [basic.stc.dynamic.allocation]
3.6.3.2 Deallocation functions [basic.stc.dynamic.deallocation]
3.6.4 Duration of sub-objects [basic.stc.inherit]
3.6.5 The mutable keyword [basic.stc.mutable]
3.6.6 Reference duration [basic.stc.ref]
3.7 Types [basic.types]
3.7.1 Fundamental types [basic.fundamental]
3.7.2 Compound types [basic.compound]
3.7.3 CV-qualifiers [basic.type.qualifier]
3.7.4 Type names [basic.type.name]
3.8 Lvalues and rvalues [basic.lval]
4 Standard conversions [conv]
4.1 Lvalue-to-rvalue conversion [conv.lval]
4.2 Array-to-pointer conversion [conv.array]
4.3 Function-to-pointer conversion [conv.func]
4.4 Qualification conversions [conv.qual]
4.5 Integral promotions [conv.prom]
4.6 Floating point promotion [conv.fpprom]
4.7 Integral conversions [conv.integral]
4.8 Floating point conversions [conv.double]
4.9 Floating-integral conversions [conv.fpint]
4.10 Pointer conversions [conv.ptr]
4.11 Pointer to member conversions [conv.mem]
4.12 Base class conversion [conv.class]
4.13 Boolean conversions [conv.bool]
5 Expressions [expr]
5.1 Primary expressions [expr.prim]
5.2 Postfix expressions [expr.post]
5.2.1 Subscripting [expr.sub]
5.2.2 Function call [expr.call]
5.2.3 Explicit type conversion (functional notation) [expr.type.conv]
5.2.4 Class member access [expr.ref]
5.2.5 Increment and decrement [expr.post.incr]
5.2.6 Dynamic cast [expr.dynamic.cast]
5.2.7 Type identification [expr.typeid]
5.2.8 Static cast [expr.static.cast]
5.2.9 Reinterpret cast [expr.reinterpret.cast]
5.2.10 Const cast [expr.const.cast]
5.3 Unary expressions [expr.unary]
5.3.1 Unary operators [expr.unary.op]
5.3.2 Increment and decrement [expr.pre.incr]
5.3.3 Sizeof [expr.sizeof]
5.3.4 New [expr.new]
5.3.5 Delete [expr.delete]
5.4 Explicit type conversion (cast notation) [expr.cast]
5.5 Pointer-to-member operators [expr.mptr.oper]
5.6 Multiplicative operators [expr.mul]
5.7 Additive operators [expr.add]
5.8 Shift operators [expr.shift]
5.9 Relational operators [expr.rel]
5.10 Equality operators [expr.eq]
5.11 Bitwise AND operator [expr.bit.and]
5.12 Bitwise exclusive OR operator [expr.xor]
5.13 Bitwise inclusive OR operator [expr.or]
5.14 Logical AND operator [expr.log.and]
5.15 Logical OR operator [expr.log.or]
5.16 Conditional operator [expr.cond]
5.17 Assignment operators [expr.ass]
5.18 Comma operator [expr.comma]
5.19 Constant expressions [expr.const]
6 Statements [stmt.stmt]
6.1 Labeled statement [stmt.label]
6.2 Expression statement [stmt.expr]
6.3 Compound statement or block [stmt.block]
6.4 Selection statements [stmt.select]
6.4.1 The if statement [stmt.if]
6.4.2 The switch statement [stmt.switch]
6.5 Iteration statements [stmt.iter]
6.5.1 The while statement [stmt.while]
6.5.2 The do statement [stmt.do]
6.5.3 The for statement [stmt.for]
6.6 Jump statements [stmt.jump]
6.6.1 The break statement [stmt.break]
6.6.2 The continue statement [stmt.cont]
6.6.3 The return statement [stmt.return]
6.6.4 The goto statement [stmt.goto]
6.7 Declaration statement [stmt.dcl]
6.8 Ambiguity resolution [stmt.ambig]
7 Declarations [dcl.dcl]
7.1 Specifiers [dcl.spec]
7.1.1 Storage class specifiers [dcl.stc]
7.1.2 Function specifiers [dcl.fct.spec]
7.1.3 The typedef specifier [dcl.typedef]
7.1.4 The friend specifier [dcl.friend]
7.1.5 Type specifiers [dcl.type]
7.1.5.1 The cv-qualifiers [dcl.type.cv]
7.1.5.2 Simple type specifiers [dcl.type.simple]
7.1.5.3 Elaborated type specifiers [dcl.type.elab]
7.2 Enumeration declarations [dcl.enum]
7.3 Namespaces [basic.namespace]
7.3.1 Namespace definition [namespace.def]
7.3.1.1 Explict qualification [namespace.qual]
7.3.1.2 Unnamed namespaces [namespace.unnamed]
7.3.1.3 Namespace scope [namespace.scope]
7.3.1.4 Namespace member definitions [namespace.memdef]
7.3.2 Namespace or class alias [namespace.alias]
7.3.3 The using declaration [namespace.udecl]
7.3.4 Using directive [namespace.udir]
7.4 The asm declaration [dcl.asm]
7.5 Linkage specifications [dcl.link]
8 Declarators [dcl.decl]
8.1 Type names [dcl.name]
8.2 Ambiguity resolution [dcl.ambig.res]
8.3 Meaning of declarators [dcl.meaning]
8.3.1 Pointers [dcl.ptr]
8.3.2 References [dcl.ref]
8.3.3 Pointers to members [dcl.mptr]
8.3.4 Arrays [dcl.array]
8.3.5 Functions [dcl.fct]
8.3.6 Default arguments [dcl.fct.default]
8.4 Function definitions [dcl.fct.def]
8.5 Initializers [dcl.init]
8.5.1 Aggregates [dcl.init.aggr]
8.5.2 Character arrays [dcl.init.string]
8.5.3 References [dcl.init.ref]
9 Classes [class]
9.1 Class names [class.name]
9.2 Class members [class.mem]
9.3 Scope rules for classes [class.scope0]
9.4 Member functions [class.mfct]
9.4.1 The this pointer [class.this]
9.4.2 Inline member functions [class.inline]
9.5 Static members [class.static]
9.6 Unions [class.union]
9.7 Bit-fields [class.bit]
9.8 Nested class declarations [class.nest]
9.9 Local class declarations [class.local]
9.10 Nested type names [class.nested.type]
10 Derived classes [class.derived]
10.1 Multiple base classes [class.mi]
10.2 Member Name Lookup [class.member.lookup]
10.3 Virtual functions [class.virtual]
10.4 Abstract classes [class.abstract]
10.5 Summary of scope rules [class.scope]
11 Member access control [class.access]
11.1 Access specifiers [class.access.spec]
11.2 Access specifiers for base classes [class.access.base]
11.3 Access declarations [class.access.dcl]
11.4 Friends [class.friend]
11.5 Protected member access [class.protected]
11.6 Access to virtual functions [class.access.virt]
11.7 Multiple access [class.paths]
12 Special member functions [special]
12.1 Constructors [class.ctor]
12.2 Temporary objects [class.temporary]
12.3 Conversions [class.conv]
12.3.1 Conversion by constructor [class.conv.ctor]
12.3.2 Conversion functions [class.conv.fct]
12.4 Destructors [class.dtor]
12.5 Free store [class.free]
12.6 Initialization [class.init]
12.6.1 Explicit initialization [class.expl.init]
12.6.2 Initializing bases and members [class.base.init]
12.7 Constructors and destructors [class.cdtor]
12.8 Copying class objects [class.copy]
13 Overloading [over]
13.1 Overloadable declarations [over.load]
13.1.1 Declaration matching [over.dcl]
13.2 Overload resolution [over.match]
13.2.1 Candidate functions and argument lists [over.match.funcs]
13.2.1.1 Function call syntax [over.match.call]
13.2.1.1.1 Call to named function [over.call.func]
13.2.1.1.2 Call to object of class type [over.call.object]
13.2.1.2 Operators in expressions [over.match.oper]
13.2.1.3 Initialization by user-defined conversions [over.match.user]
13.2.1.4 Initialization by constructor [over.match.ctor]
13.2.2 Viable functions [over.match.viable]
13.2.3 Best Viable Function [over.match.best]
13.2.3.1 Implicit conversion sequences [over.best.ics]
13.2.3.1.1 Standard conversion sequences [over.ics.scs]
13.2.3.1.2 User-defined conversion sequences [over.ics.user]
13.2.3.1.3 Ellipsis conversion sequences [over.ics.ellipsis]
13.2.3.1.4 Reference binding [over.ics.ref]
13.2.3.2 Ranking implicit conversion sequences [over.ics.rank]
13.3 Address of overloaded function [over.over]
13.4 Overloaded operators [over.oper]
13.4.1 Unary operators [over.unary]
13.4.2 Binary operators [over.binary]
13.4.3 Assignment [over.ass]
13.4.4 Function call [over.call]
13.4.5 Subscripting [over.sub]
13.4.6 Class member access [over.ref]
13.4.7 Increment and decrement [over.inc]
13.5 Built-in operators [over.built]
14 Templates [temp]
14.1 Template names [temp.names]
14.2 Name resolution [temp.res]
14.2.1 Locally declared names [temp.local]
14.2.2 Names from the template's enclosing scope [temp.encl]
14.2.3 Dependent names [temp.dep]
14.2.4 Non-local names declared within a template [temp.inject]
14.3 Template instantiation [temp.inst]
14.3.1 Making template definitions available [temp.avail]
14.3.2 Point of instantiation [temp.point]
14.3.3 Instantiation of operator->
14.4 Explicit instantiation [temp.explicit]
14.5 Template specialization [temp.spec]
14.6 Template parameters [temp.param]
14.7 Template arguments [temp.arg]
14.8 Type equivalence [temp.type]
14.9 Function templates [temp.fct]
14.9.1 Explicit template argument specification [temp.arg.explicit]
14.9.2 Template argument deduction [temp.deduct]
14.9.3 Overload resolution [temp.over]
14.9.4 Overloading and specialization [temp.over.spec]
14.10 Member function templates [temp.mem.func]
14.11 Friends [temp.friend]
14.12 Static members and variables [temp.static]
15 Exception handling [except]
15.1 Throwing an exception [except.throw]
15.2 Constructors and destructors [except.ctor]
15.3 Handling an exception [except.handle]
15.4 Exception specifications [except.spec]
15.5 Special functions [except.special]
15.5.1 The terminate() function [except.terminate]
15.5.2 The unexpected() function [except.unexpected]
15.6 Exceptions and access [except.access]
16 Preprocessing directives [cpp]
16.1 Conditional inclusion [cpp.cond]
16.2 Source file inclusion [cpp.include]
16.3 Macro replacement [cpp.replace]
16.3.1 Argument substitution [cpp.subst]
16.3.2 The # operator [cpp.stringize]
16.3.3 The ## operator [cpp.concat]
16.3.4 Rescanning and further replacement [cpp.rescan]
16.3.5 Scope of macro definitions [cpp.scope]
16.4 Line control [cpp.line]
16.5 Error directive [cpp.error]
16.6 Pragma directive [cpp.pragma]
16.7 Null directive [cpp.null]
16.8 Predefined macro names [cpp.predefined]
17 Library introduction [lib.library]
17.1 Definitions [lib.definitions]
17.2 Method of description [lib.description]
17.2.1 Structure of each subclause [lib.structure]
17.2.2 Constraints on template arguments [lib.template.constraints]
17.2.2.1 Traits [lib.trait.types]
17.2.2.2 Iterator types [lib.iterator.types]
17.2.2.2.1 Input iterators [lib.input.iterators]
17.2.2.2.2 Output iterators [lib.output.iterators]
17.2.2.2.3 Forward iterators [lib.forward.iterators]
17.2.2.2.4 Bidirectional iterators [lib.bidirectional.iterators]
17.2.2.2.5 Random access iterators [lib.random.access.iterators]
17.2.2.3 Allocator types [lib.allocator.types]
17.2.2.4 Container types [lib.container.types]
17.2.2.4.1 Sequences [lib.sequence.reqmts]
17.2.2.4.2 Associative containers [lib.associative.containers]
17.2.3 Implementation types [lib.implementation.types]
17.2.3.1 Enumerated types [lib.enumerated.types]
17.2.3.2 Bitmask types [lib.bitmask.types]
17.2.3.3 Character sequences [lib.character.seq]
17.2.3.3.1 Byte strings [lib.byte.strings]
17.2.3.3.2 Multibyte strings [lib.multibyte.strings]
17.2.3.3.3 Wide-character sequences [lib.wide.characters]
17.2.4 Other conventions [lib.res.and.conventions]
17.2.4.1 Handler functions [lib.global.pointers]
17.2.4.2 Functions within classes [lib.functions.within.classes]
17.2.4.3 Private members [lib.objects.within.classes]
17.2.4.4 Convenient names [lib.unreserved.names]
17.3 Library-wide requirements [lib.requirements]
17.3.1 Library contents and organization [lib.organization]
17.3.1.1 Library contents [lib.contents]
17.3.1.2 Headers [lib.headers]
17.3.1.3 Freestanding implementations [lib.compliance]
17.3.2 Using the library [lib.using]
17.3.2.1 Headers [lib.using.headers]
17.3.2.2 Linkage [lib.using.linkage]
17.3.3 Constraints on programs [lib.constraints]
17.3.3.1 Reserved names [lib.reserved.names]
17.3.3.1.1 Macro names [lib.macro.names]
17.3.3.1.2 Global names [lib.global.names]
17.3.3.1.3 External linkage [lib.extern.names]
17.3.3.2 Headers [lib.alt.headers]
17.3.3.3 Derived classes [lib.derived.classes]
17.3.3.4 Replacement functions [lib.replacement.functions]
17.3.3.5 Handler functions [lib.handler.functions]
17.3.3.6 Function arguments [lib.res.on.arguments]
17.3.4 Conforming implementations [lib.conforming]
17.3.4.1 Headers [lib.res.on.headers]
17.3.4.2 Restrictions on macro definitions [lib.res.on.macro.definitions]
17.3.4.3 Global functions [lib.global.functions]
17.3.4.4 Member functions [lib.member.functions]
17.3.4.5 Reentrancy [lib.reentrancy]
17.3.4.6 Protection within classes [lib.protection.within.classes]
17.3.4.7 Derived classes [lib.derivation]
17.3.4.8 Restrictions on exception handling [lib.res.on.exception.handling]
18 Language support library [lib.language.support]
18.1 Types [lib.support.types]
18.1.1 Values [lib.stddef.values]
18.1.2 Types [lib.stddef.types]
18.2 Implementation properties [lib.support.limits]
18.3 Start and termination [lib.support.start.term]
18.3.0.1 atexit [lib.atexit]
18.3.0.2 exit [lib.exit]
18.4 Dynamic memory management [lib.support.dynamic]
18.4.1 Storage allocation and deallocation [lib.new.delete]
18.4.1.1 Single-object forms [lib.new.delete.single]
18.4.1.1.1 operator new [lib.op.new]
18.4.1.1.2 operator delete [lib.op.delete]
18.4.1.2 Array forms [lib.new.delete.array]
18.4.1.3 operator new[] [lib.op.new.array]
18.4.1.4 operator delete[] [lib.op.delete.array]
18.4.1.5 Placement forms [lib.new.delete.placement]
18.4.1.5.1 Placement operator new [lib.placement.op.new]
18.4.1.5.2 Placement operator new[] [lib.placement.op.new.array]
18.4.2 Storage allocation errors [lib.alloc.errors]
18.4.2.1 Class bad_alloc [lib.bad.alloc]
18.4.2.1.1 bad_alloc constructor [lib.cons.bad.alloc]
18.4.2.1.2 bad_alloc destructor [lib.des.bad.alloc]
18.4.2.1.3 bad_alloc::what [lib.bad.alloc::what]
18.4.2.2 Type new_handler [lib.new.handler]
18.4.2.3 set_new_handler [lib.set.new.handler]
18.5 Type identification [lib.support.rtti]
18.5.1 Type information [lib.rtti]
18.5.1.1 Class typeid [lib.typeid]
18.5.1.2 Class type_info [lib.type.info]
18.5.1.2.1 type_info destructor [lib.des.type.info]
18.5.1.2.2 type_info::operator== [lib.type.info::op==]
18.5.1.2.3 type_info::operator!= [lib.type.info::op!=]
18.5.1.2.4 type_info::before [lib.type.info::before]
18.5.1.2.5 type_info::name [lib.type.info::name]
18.5.1.2.6 Copying and assignment [lib.cons.type.info]
18.5.2 Type identification errors [lib.rtti.errors]
18.5.2.1 Class bad_cast [lib.bad.cast]
18.5.2.1.1 bad_cast constructor [lib.cons.bad.cast]
18.5.2.1.2 bad_cast destructor [lib.des.bad.cast]
18.5.2.1.3 bad_cast::what [lib.bad.cast::what]
18.5.2.2 Class bad_typeid [lib.bad.typeid]
18.5.2.2.1 bad_typeid constructor [lib.cons.bad.type.id]
18.5.2.2.2 bad_typeid destructor [lib.des.bad.type.id]
18.6 Exception handling [lib.support.exception]
18.6.1 Abnormal termination [lib.exception.terminate]
18.6.1.1 Type terminate_handler [lib.terminate.handler]
18.6.1.2 set_terminate [lib.set.terminate]
18.6.1.3 terminate [lib.terminate]
18.6.2 Violating exception-specifications [lib.exception.unexpected]
18.6.2.1 Type unexpected_handler [lib.unexpected.handler]
18.6.2.2 set_unexpected [lib.set.unexpected]
18.6.2.3 unexpected [lib.unexpected]
18.7 Other runtime support [lib.support.runtime]
19 Diagnostics library [lib.diagnostics]
19.1 Exception classes [lib.std.exceptions]
19.1.1 Class exception [lib.exception]
19.1.1.1 exception constructors [lib.exception.cons]
19.1.1.2 exception destructor [lib.exception.des]
19.1.1.3 exception::what [lib.exception::what]
19.1.2 Class logic_error [lib.logic.error]
19.1.2.1 logic_error constructor [lib.logic.error.cons]
19.1.2.2 logic_error destructor [lib.logic.error.des]
19.1.2.3 logic_error::what [lib.logic.error::what]
19.1.3 Class domain_error [lib.domain.error]
19.1.3.1 domain_error constructor [lib.domain.error.cons]
19.1.3.2 domain_error destructor [lib.domain.error.des]
19.1.3.3 domain::what [lib.domain.error::what]
19.1.4 Class invalid_argument [lib.invalid.argument]
19.1.4.1 invalid_argument constructor [lib.invalid.argument.cons]
19.1.4.2 invalid_argument destructor [lib.invalid.argument.des]
19.1.4.3 invalid_argument::what [lib.invalid.argument::what]
19.1.5 Class length_error [lib.length.error]
19.1.5.1 length_error constructor [lib.length.error.cons]
19.1.5.2 length_error destructor [lib.length.error.des]
19.1.5.3 length_error::what [lib.length.error::what]
19.1.6 Class out_of_range [lib.out.of.range]
19.1.6.1 out_of_range constructor [lib.out.of.range.cons]
19.1.6.2 out_of_range destructor [lib.out.of.range.des]
19.1.6.3 out_of_range::what [lib.out.of.range::what]
19.1.7 Class runtime_error [lib.runtime.error]
19.1.7.1 runtime_error constructors [lib.runtime.error.cons]
19.1.7.2 runtime_error destructor [lib.runtime.error.des]
19.1.7.3 runtime::what [lib.runtime.error::what]
19.1.8 Class range_error [lib.range.error]
19.1.8.1 range_error constructor [lib.range.error.cons]
19.1.8.2 range_error destructor [lib.range.error.des]
19.1.8.3 range_error::what [lib.range.error::what]
19.1.9 Class overflow_error [lib.overflow.error]
19.1.9.1 overflow_error constructor [lib.overflow.error.cons]
19.1.9.2 overflow_error destructor [lib.overflow.error.des]
19.1.9.3 overflow_error::what [lib.overflow.error::what]
19.2 Assertions [lib.assertions]
19.3 Error numbers [lib.errno]
20 General utilities library [lib.utilities]
20.1 Core components [lib.core]
20.1.1 Operators [lib.operators]
20.1.2 Tuples [lib.tuples]
20.1.2.1 Empty [lib.empty]
20.1.2.2 Pair [lib.pair]
20.1.3 Restrictor [lib.restrictor]
20.2 Function objects [lib.function.objects]
20.2.1 Base [lib.base]
20.2.2 Arithmetic operations [lib.arithmetic.operations]
20.2.3 Comparisons [lib.comparisons]
20.2.4 Logical operations [lib.logical.operations]
20.2.5 Negators [lib.negators]
20.2.6 Binders [lib.binders]
20.2.6.1 Template class binder1st [lib.binder.1st]
20.2.6.2 bind1st [lib.bind.1st]
20.2.6.3 Template class binder2nd [lib.binder.2nd]
20.2.6.4 bind2nd [lib.bind.2nd]
20.2.7 Adaptors for pointers to functions [lib.function.pointer.adaptors]
20.3 Memory [lib.memory]
20.3.1 The default allocator [lib.default.allocator]
20.3.2 Raw storage iterator [lib.storage.iterator]
20.3.3 Memory handling primitives [lib.memory.primitives]
20.3.3.1 allocate [lib.allocate]
20.3.3.2 deallocate [lib.deallocate]
20.3.3.3 construct [lib.construct]
20.3.3.4 destroy [lib.destroy]
20.3.3.5 get_temporary_buffer [lib.get.temporary.buffer]
20.3.4 Specialized algorithms [lib.specialized.algorithms]
20.3.4.1 uninitialized_copy [lib.uninitialized.copy]
20.3.4.2 uninitialized_fill [lib.uninitialized.fill]
20.3.4.3 uninitialized_fill [lib.uninitialized.fill.n]
20.3.4.4 objcpy [lib.template.objcpy]
20.3.4.5 objmove [lib.template.objmove]
20.3.4.6 objconstruct [lib.template.objcons]
20.3.4.7 objdestroy [lib.template.objdes]
20.3.5 C library changes [lib.c.malloc]
20.4 Date and time [lib.date.time]
21 Strings library [lib.strings]
21.1 String classes [lib.string.classes]
21.1.1 Template class basic_string [lib.template.string]
21.1.1.1 Template class string_char_baggage [lib.string.char.baggage]
21.1.1.2 Template class basic_string [lib.basic.string]
21.1.1.3 basic_string member functions [lib.string.members]
21.1.1.3.1 basic_string constructors [lib.string.cons]
21.1.1.3.2 basic_string destructor [lib.string.des]
21.1.1.3.3 basic_string::operator= [lib.string::op=]
21.1.1.3.4 basic_string::operator+= [lib.string::op+=]
21.1.1.3.5 basic_string::append [lib.string::append]
21.1.1.3.6 basic_string::assign [lib.string::assign]
21.1.1.3.7 basic_string::insert [lib.string::insert]
21.1.1.3.8 basic_string::remove [lib.string::remove]
21.1.1.3.9 basic_string::replace [lib.string::replace]
21.1.1.3.10 basic_string::get_at [lib.string::get.at]
21.1.1.3.11 basic_string::put_at [lib.string::put.at]
21.1.1.3.12 basic_string::operator[] [lib.string::op.array]
21.1.1.3.13 basic_string::c_str [lib.string::c.str]
21.1.1.3.14 basic_string::data [lib.string::data]
21.1.1.3.15 basic_string::length [lib.string::length]
21.1.1.3.16 basic_string::resize [lib.string::resize]
21.1.1.3.17 basic_string::reserve [lib.string::reserve]
21.1.1.3.18 basic_string::copy [lib.string::copy]
21.1.1.3.19 basic_string::find [lib.string::find]
21.1.1.3.20 basic_string::rfind [lib.rfind]
21.1.1.3.21 basic_string::find_first_of [lib.string::find.first.of]
21.1.1.3.22 basic_string::find_last_of [lib.string::find.last.of]
21.1.1.3.23 basic_string::find_first_not_of [lib.string::find.first.not.of]
21.1.1.3.24 basic_string::find_last_not_of [lib.string::find.last.not.of]
21.1.1.3.25 basic_string::substr [lib.string::substr]
21.1.1.3.26 basic_string::compare [lib.string::compare]
21.1.1.4 basic_string non-member functions [lib.string.nonmembers]
21.1.1.4.1 operator+ [lib.string::op+]
21.1.1.4.2 operator== [lib.string::operator==]
21.1.1.4.3 operator!= [lib.string::op!=]
21.1.1.4.4 Inserters and extractors
21.1.2 Class string [lib.string]
21.1.3 Class wstring [lib.wstring]
21.2 Null-terminated sequence utilities [lib.c.strings]
22 Localization library [lib.localization]
22.1 Locales [lib.locales]
22.1.1 Class locale [lib.locale]
22.1.1.1 Type locale::category [lib.locale.category]
22.1.1.2 locale constructors [lib.locale.cons]
22.1.1.3 locale destructor [lib.locale.des]
22.1.1.4 locale::use [lib.locale.use]
22.1.1.5 locale::has [lib.locale.has]
22.1.1.6 locale::name [lib.locale.name]
22.1.1.7 locale::operator== [lib.locale.op==]
22.1.1.8 locale::operator!= [lib.locale.op!=]
22.1.1.9 locale::isspace [lib.locale.isspace]
22.1.1.10 locale::isprint [lib.locale.isprint]
22.1.1.11 locale::iscntrl [lib.locale.iscntrl]
22.1.1.12 locale::isupper [lib.locale.isupper]
22.1.1.13 locale::islower [lib.locale.islower]
22.1.1.14 locale::isalpha [lib.locale.isalpha]
22.1.1.15 locale::isdigit [lib.locale.isdigit]
22.1.1.16 locale::ispunct [lib.locale.ispunct]
22.1.1.17 locale::isxdigit [lib.locale.isxdigit]
22.1.1.18 locale::isalnum [lib.locale.isalnum]
22.1.1.19 locale::isgraph [lib.locale.isgraph]
22.1.1.20 locale::toupper [lib.locale.toupper]
22.1.1.21 locale::tolower [lib.locale.tolower]
22.1.1.22 locale::operator() [lib.locale.op()]
22.1.1.23 locale::global [lib.locale.global]
22.1.1.24 locale::classic [lib.locale.classic]
22.1.1.25 locale::transparent [lib.locale.transparent]
22.1.1.26 operator<< [lib.locale.op<<]
22.1.1.27 operator>> [lib.locale.op>>]
22.1.2 Locale classes [lib.locale.classes]
22.1.2.1 Class locale::facet [lib.locale.facet]
22.1.2.2 Class locale::id [lib.locale.ctype.id]
22.2 Standard locale facets [lib.std.facets]
22.2.1 The ctype facet [lib.facet.ctype]
22.2.1.1 Template class locale::ctype_base [lib.locale.ctype.base]
22.2.1.2 Template class locale::ctype [lib.locale.ctype]
22.2.2 The ctype<char> facet [lib.facet.ctype.char]
22.2.2.1 Class ctype<char> [lib.locale.ctype.char]
22.2.2.2 Template class ctype_byname [lib.locale.ctype.byname]
22.2.2.3 Convenience interfaces [lib.locale.ctype.convenience]
22.2.3 The numeric facet [lib.facet.numeric]
22.2.3.1 Template class num_get [lib.locale.num.get]
22.2.3.2 Template class num_put [lib.locale.num.put]
22.2.4 The numeric punctuation facet [lib.facet.numpunct]
22.2.4.1 Template class numpunct [lib.locale.numpunct]
22.2.4.2 Template class numpunct_byname [lib.locale.numpunct.byname]
22.2.5 The collation facet [lib.facet.collate]
22.2.5.1 Template class collate [lib.locale.collate]
22.2.5.2 Template class collate_byname [lib.locale.collate.byname]
22.2.6 The codeset conversion facet [lib.facet.codecvt]
22.2.6.1 Template class codecvt [lib.locale.codecvt]
22.2.6.2 Template class codecvt_byname [lib.locale.codecvt.byname]
22.2.7 The date and time facet [lib.facet.date.time]
22.2.7.1 Template class time_get [lib.locale.time.get]
22.2.7.2 Template class time_get_byname [lib.locale.time.get.byname]
22.2.7.3 Template class time_put [lib.locale.time.put]
22.2.7.4 Template class time_put_byname [lib.locale.time.put.byname]
22.2.8 The money facet [lib.facet.money]
22.2.8.1 Template class money_get [lib.locale.money.get]
22.2.8.2 Template class money_put [lib.locale.money.put]
22.2.9 The money punctuation facet [lib.facet.moneypunct]
22.2.9.1 Template class moneypunct [lib.locale.moneypunct]
22.2.9.2 Template class moneypunct_byname [lib.locale.moneypunct.byname]
22.2.10 The message retrieval facet [lib.facet.messages]
22.2.10.1 Template class msg [lib.locale.msg]
22.2.10.2 Template class msg_byname [lib.locale.msg.byname]
22.2.11 User-defined facets [lib.facets.examples]
22.3 C Library Locales [lib.c.locales]
23 Containers library [lib.containers]
23.1 Sequences [lib.sequences]
23.1.1 Template class bits [lib.template.bits]
23.1.1.1 bits constructors [lib.cons.bits]
23.1.1.2 bits::operator&= [lib.bits::op&=.bt]
23.1.1.3 bits::operator|= [lib.bits::op|=.bt]
23.1.1.4 bits::operator^= [lib.bits::op^=.bt]
23.1.1.5 bits::operator<<= [lib.bits::op.lsh=]
23.1.1.6 bits::operator>>= [lib.bits::op.rsh=]
23.1.1.7 bits::set [lib.bits::set]
23.1.1.8 bits::reset [lib.bits::reset]
23.1.1.9 bits::operator~ [lib.bits::op~]
23.1.1.10 bits::toggle [lib.bits::toggle]
23.1.1.11 bits::to_ushort [lib.bits::to.ushort]
23.1.1.12 bits::to_ulong [lib.bits::to.ulong]
23.1.1.13 bits::to_string [lib.bits::to.string]
23.1.1.14 bits::count [lib.bits::count]
23.1.1.15 bits::length [lib.bits::length]
23.1.1.16 bits::operator== [lib.bits::op==.bt]
23.1.1.17 bits::operator!= [lib.bits::op!=.bt]
23.1.1.18 bits::test [lib.bits::test]
23.1.1.19 bits::any [lib.bits::any]
23.1.1.20 bits::none [lib.bits::none]
23.1.1.21 bits::operator<< [lib.bits::op.lsh]
23.1.1.22 bits::operator>> [lib.bits::op.rsh]
23.1.1.23 operator& [lib.op&.bt.bt]
23.1.1.24 operator| [lib.op|.bt.bt]
23.1.1.25 \f7operator^ [lib.op^.bt.bt]
23.1.1.26 operator>> [lib.ext.bt]
23.1.1.27 operator<< [lib.ins.bt]
23.1.2 Class bit_string [lib.bit.string]
23.1.2.1 bit_string constructors [lib.cons.bit.string]
23.1.2.2 bit_string::operator+= [lib.bit.string::op+=.bs]
23.1.2.3 bit_string::operator&= [lib.bit.string::op&=.bs]
23.1.2.4 bit_string::operator|= [lib.bit.string::op|=.bs]
23.1.2.5 bit_string::operator^= [lib.bit.string::op^=.bs]
23.1.2.6 bit_string::operator<<= [lib.bit.string::op.lsh=]
23.1.2.7 bit_string::operator>>= [lib.bit.string::op.rsh=]
23.1.2.8 bit_string::append [lib.bit.string::append]
23.1.2.9 bit_string::assign [lib.bit.string::assign]
23.1.2.10 bit_string::insert [lib.bit.string::insert]
23.1.2.11 bit_string::remove [lib.bit.string::remove]
23.1.2.12 bit_string::replace [lib.bit.string::replace]
23.1.2.13 bit_string::set [lib.bit.string::set]
23.1.2.14 bit_string::reset [lib.bit.string::reset]
23.1.2.15 bit_string::toggle [lib.bit.string::toggle]
23.1.2.16 bit_string::to_string [lib.bit.string::to.string]
23.1.2.17 bit_string::count [lib.bit.string::count]
23.1.2.18 bit_string::length [lib.bit.string::length]
23.1.2.19 bit_string::resize [lib.bit.string::resize]
23.1.2.20 bit_string::trim [lib.bit.string::trim]
23.1.2.21 bit_string::find [lib.bit.string::find]
23.1.2.22 bit_string::rfind [lib.bit.string::rfind]
23.1.2.23 bit_string::substr [lib.bit.string::substr]
23.1.2.24 bit_string::operator== [lib.bit.string::op==.bs]
23.1.2.25 bit_string::operator!= [lib.bit.string::op!=.bs]
23.1.2.26 bit_string::test [lib.bit.string::test]
23.1.2.27 bit_string::any [lib.bit.string::any]
23.1.2.28 bit_string::none [lib.bit.string::none]
23.1.2.29 bit_string::operator<< [lib.bit.string::op.lsh]
23.1.2.30 bit_string::operator>> [lib.bit.string::op.rsh]
23.1.2.31 bit_string::operator~ [lib.bit.string::op~]
23.1.2.32 operator+ [lib.op+.bs.bs]
23.1.2.33 operator& [lib.op&.bs.bs]
23.1.2.34 operator| [lib.op|.bs.bs]
23.1.2.35 operator^ [lib.op^.bs.bs]
23.1.2.36 operator>> [lib.ext.bs]
23.1.2.37 operator<< [lib.ins.bs]
23.1.3 Template class dyn_array [lib.template.dyn.array]
23.1.3.1 dyn_array constructors [lib.cons.dyn.array]
23.1.3.2 dyn_array::operator+= [lib.dyn.array::op+=]
23.1.3.3 dyn_array::append [lib.dyn.array::append]
23.1.3.4 dyn_array::assign [lib.dyn.array::assign]
23.1.3.5 dyn_array::insert [lib.dyn.array::insert]
23.1.3.6 dyn_array::remove [lib.dyn.array::remove]
23.1.3.7 dyn_array::sub_array [lib.dyn.array::sub.array]
23.1.3.8 dyn_array::swap [lib.dyn.array::swap]
23.1.3.9 dyn_array::get_at [lib.dyn.array::get.at]
23.1.3.10 dyn_array::put_at [lib.dyn.array::put.at]
23.1.3.11 dyn_array::operator[] [lib.dyn.array::op.array]
23.1.3.12 dyn_array::data [lib.dyn.array::data]
23.1.3.13 dyn_array::length [lib.dyn.array::length]
23.1.3.14 dyn_array::resize [lib.dyn.array::resize]
23.1.3.15 dyn_array::reserve [lib.dyn.array::reserve]
23.1.3.16 operator+ [lib.op+.da.da]
23.1.4 Template class ptr_dyn_array [lib.template.ptr.dyn.array]
23.1.4.1 ptr_dyn_array constructors [lib.cons.ptr.dyn.array]
23.1.4.2 ptr_dyn_array::operator+= [lib.ptr.dyn.array::op+=]
23.1.4.3 ptr_dyn_array::append [lib.ptr.dyn.array::append]
23.1.4.4 ptr_dyn_array::assign [lib.ptr.dyn.array::assign]
23.1.4.5 ptr_dyn_array::insert [lib.ptr.dyn.array::insert]
23.1.4.6 ptr_dyn_array::remove [lib.ptr.dyn.array::remove]
23.1.4.7 ptr_dyn_array::sub_array [lib.ptr.dyn.array::sub.array]
23.1.4.8 ptr_dyn_array::swap [lib.ptr.dyn.array::swap]
23.1.4.9 ptr_dyn_array::get_at [lib.ptr.dyn.array::get.at]
23.1.4.10 ptr_dyn_array::put_at [lib.ptr.dyn.array::put.at]
23.1.4.11 ptr_dyn_array::operator[] [lib.ptr.dyn.array::op.array]
23.1.4.12 ptr_dyn_array::data [lib.ptr.dyn.array::data]
23.1.4.13 ptr_dyn_array::length [lib.ptr.dyn.array::length]
23.1.4.14 ptr_dyn_array::resize [lib.ptr.dyn.array::resize]
23.1.4.15 ptr_dyn_array::reserve [lib.ptr.dyn.array::reserve]
23.1.4.16 operator+ [lib.op+.pda.pda]
23.1.5 Template class vector [lib.vector]
23.1.5.1 Typedefs [lib.vector.typedefs]
23.1.5.2 Constructors [lib.vector.cons]
23.1.5.3 Member functions [lib.vector.members]
23.1.6 Class vector<bool> [lib.vector.bool]
23.1.7 Template class list [lib.list]
23.1.7.1 Typedefs [lib.list.typedefs]
23.1.7.2 Member functions [lib.list.members]
23.1.8 Template class deque [lib.deque]
23.1.8.1 Typedefs [lib.deque.typedefs]
23.1.8.2 Member functions [lib.deque.members]
23.1.9 Template class stack [lib.stack]
23.1.10 Template class queue [lib.queue]
23.1.11 Template class priority_queue [lib.priority.queue]
23.2 Associative containers [lib.associative]
23.2.1 Template class set [lib.set]
23.2.1.1 Typedefs [lib.set.typedefs]
23.2.2 Template class multiset [lib.multiset]
23.2.2.1 Typedefs [lib.multiset.typedefs]
23.2.3 Template class map [lib.map]
23.2.3.1 Typedefs [lib.map.typedefs]
23.2.3.2 Member functions [lib.map.members]
23.2.4 Template class multimap [lib.multimap]
23.2.4.1 Typedefs [lib.multimap.typedefs]
24 Iterators library [lib.iterators]
24.1 Iterator tags [lib.iterator.tags]
24.1.1 Examples of using iterator tags [lib.examples]
24.1.2 Library defined primitives [lib.library.primitives]
24.1.2.1 Standard iterator tags [lib.std.iterator.tags]
24.1.2.2 Basic iterators [lib.basic.iterators]
24.1.2.3 iterator_category [lib.iterator.category]
24.1.2.4 value_type [lib.value.type]
24.1.2.5 distance_type [lib.distance.type]
24.1.3 Iterator operations [lib.iterator.operations]
24.2 Predefined iterators [lib.predef.iterators]
24.2.1 Reverse iterators [lib.reverse.iterators]
24.2.1.1 Template class reverse_bidirectional_iterator [lib.reverse.bidir.iter]
24.2.1.2 Template class reverse_iterator [lib.reverse.iterator]
24.2.2 Insert iterators [lib.insert.iterators]
24.2.2.1 Template class back_insert_iterator [lib.back.insert.iterator]
24.2.2.2 Template class front_insert_iterator [lib.front.insert.iterator]
24.2.2.3 Template class insert_iterator [lib.insert.iterator]
24.3 Stream iterators [lib.stream.iterators]
24.3.1 Template class istream_iterator [lib.istream.iterator]
24.3.2 Template class ostream_iterator [lib.ostream.iterator]
24.4 Streambuf iterators [lib.streambuf.iterators]
25 Algorithms library [lib.algorithms]
25.1 Non-mutating sequence operations [lib.alg.nonmutating]
25.1.1 For each [lib.alg.foreach]
25.1.2 Find [lib.alg.find]
25.1.3 Adjacent find [lib.alg.adjacent.find]
25.1.4 Count [lib.alg.count]
25.1.5 Mismatch [lib.mismatch]
25.1.6 Equal [lib.alg.equal]
25.1.7 Search [lib.alg.search]
25.2 Mutating sequence operations [lib.alg.mutating.operations]
25.2.1 Copy [lib.alg.copy]
25.2.1.1 copy [lib.copy]
25.2.1.2 copy_backward [lib.copy.backward]
25.2.2 Swap [lib.alg.swap]
25.2.2.1 swap [lib.swap]
25.2.2.2 swap_ranges [lib.swap.ranges]
25.2.3 Transform [lib.alg.transform]
25.2.4 Replace [lib.alg.replace]
25.2.4.1 replace [lib.replace]
25.2.4.2 replace_copy [lib.replace.copy]
25.2.5 Fill [lib.alg.fill]
25.2.6 Generate [lib.alg.generate]
25.2.7 Remove [lib.alg.remove]
25.2.7.1 remove [lib.remove]
25.2.7.2 remove_copy [lib.remove.copy]
25.2.8 Unique [lib.alg.unique]
25.2.8.1 unique [lib.unique]
25.2.8.2 unique_copy [lib.unique.copy]
25.2.9 Reverse [lib.alg.reverse]
25.2.9.1 reverse [lib.reverse]
25.2.9.2 reverse_copy [lib.reverse.copy]
25.2.10 Rotate [lib.alg.rotate]
25.2.10.1 rotate [lib.rotate]
25.2.10.2 rotate_copy [lib.rotate.copy]
25.2.11 Random shuffle [lib.alg.random.shuffle]
25.2.12 Partitions [lib.alg.partitions]
25.2.12.1 partition [lib.partition]
25.2.12.2 stable_partition [lib.stable.partition]
25.3 Sorting and related operations [lib.alg.sorting]
25.3.1 Sorting [lib.alg.sort]
25.3.1.1 sort [lib.sort]
25.3.1.2 stable_sort [lib.stable.sort]
25.3.1.3 partial_sort [lib.partial.sort]
25.3.1.4 partial_sort_copy [lib.partial.sort.copy]
25.3.2 Nth element [lib.alg.nth.element]
25.3.3 Binary search [lib.alg.binary.search]
25.3.3.1 lower_bound [lib.lower.bound]
25.3.3.2 upper_bound [lib.upper.bound]
25.3.3.3 equal_range [lib.equal.range]
25.3.3.4 binary_search [lib.binary.search]
25.3.4 Merge [lib.alg.merge]
25.3.4.1 merge [lib.merge]
25.3.4.2 inplace_merge [lib.inplace.merge]
25.3.5 Set operations on sorted structures [lib.alg.set.operations]
25.3.5.1 includes [lib.includes]
25.3.5.2 set_union [lib.set.union]
25.3.5.3 set_intersection [lib.set.intersection]
25.3.5.4 set_difference [lib.set.difference]
25.3.5.5 set_symmetric_difference [lib.set.symmetric.difference]
25.3.6 Heap operations [lib.alg.heap.operations]
25.3.6.1 push_heap [lib.push.heap]
25.3.6.2 pop_heap [lib.pop.heap]
25.3.6.3 make_heap [lib.make.heap]
25.3.6.4 sort_heap [lib.sort.heap]
25.3.7 Minimum and maximum [lib.alg.min.max]
25.3.7.1 min [lib.min]
25.3.7.2 max [lib.max]
25.3.7.3 max_element [lib.max.element]
25.3.7.4 min_element [lib.min.element]
25.3.8 Lexicographical comparison [lib.alg.lex.comparison]
25.3.9 Permutation generators [lib.alg.permutation.generators]
25.3.9.1 next_permutation [lib.next.permutation]
25.3.9.2 prev_permutation [lib.prev.permutation]
26 Numerics library [lib.numerics]
26.1 Complex numbers [lib.complex]
26.1.1 Complex numbers types [lib.complex.types]
26.1.1.1 Class float_complex [lib.float.complex]
26.1.1.1.1 float_complex constructor [lib.float.complex.cons]
26.1.1.1.2 operator+= [lib.op+=.fc]
26.1.1.1.3 operator-= [lib.op-=.fc]
26.1.1.1.4 operator*= [lib.op*=.fc]
26.1.1.1.5 operator/= [lib.op/=.fc]
26.1.1.2 float_complex operations [lib.float.complex.ops]
26.1.1.2.1 _float_complex [lib.float.complex.dc]
26.1.1.2.2 operator+ [lib.op+.fc.fc]
26.1.1.2.3 operator- [lib.op-.fc.fc]
26.1.1.2.4 operator* [lib.op*.fc.fc]
26.1.1.2.5 operator/ [lib.op/.fc.fc]
26.1.1.2.6 operator== [lib.op==.fc.fc]
26.1.1.2.7 operator!= [lib.op!=.fc.fc]
26.1.1.2.8 operator>> [lib.ext.fc]
26.1.1.2.9 operator<< [lib.ins.fc]
26.1.1.3 Class double_complex [lib.double.complex]
26.1.1.3.1 double_complex constructors [lib.double.complex.cons]
26.1.1.3.2 operator+= [lib.op+=.dc]
26.1.1.3.3 operator-= [lib.op-=.dc]
26.1.1.3.4 operator*= [lib.op*=.dc]
26.1.1.3.5 operator/= [lib.op/=.dc]
26.1.1.4 double_complex operations [lib.double.complex.ops]
26.1.1.4.1 _double_complex [lib.double.complex.ldc]
26.1.1.4.2 operator+ [lib.op+.dc.dc]
26.1.1.4.3 operator- [lib.op-.dc.dc]
26.1.1.4.4 operator* [lib.op*.dc.dc]
26.1.1.4.5 operator/ [lib.op/.dc.dc]
26.1.1.4.6 operator== [lib.op==.dc.dc]
26.1.1.4.7 operator!= [lib.op!=.dc.dc]
26.1.1.4.8 operator>> [lib.ext.dc]
26.1.1.4.9 operator<< [lib.ins.dc]
26.1.1.5 Class long_double_complex [lib.long.double.complex]
26.1.1.5.1 long_double_complex constructors [lib.long.double.complex.cons]
26.1.1.5.2 operator+= [lib.op+=.ldc]
26.1.1.5.3 operator-= [lib.op-=.ldc]
26.1.1.5.4 operator*= [lib.op*=.ldc]
26.1.1.5.5 operator/= [lib.op/=.ldc]
26.1.1.6 long_double_complex operations [lib.long.double.complex.ops]
26.1.1.6.1 operator+ [lib.op+.ldc.ldc]
26.1.1.6.2 operator- [lib.op-.ldc.ldc]
26.1.1.6.3 operator* [lib.op*.ldc.ldc]
26.1.1.6.4 operator/ [lib.op/.ldc.ldc]
26.1.1.6.5 operator!= [lib.op!=.ldc.ldc]
26.1.1.6.6 operator>> [lib.ext.ldc]
26.1.1.6.7 operator<< [lib.ins.ldc]
26.1.2 Complex number operations [lib.complex.ops]
26.1.2.1 abs [lib.abs]
26.1.2.2 arg [lib.arg]
26.1.2.3 conj [lib.conj]
26.1.2.4 cos [lib.cos]
26.1.2.5 cosh [lib.cosh]
26.1.2.6 exp [lib.exp]
26.1.2.7 imag [lib.imag]
26.1.2.8 log [lib.log]
26.1.2.9 norm [lib.norm]
26.1.2.10 polar [lib.polar.ld.ld]
26.1.2.11 pow [lib.pow]
26.1.2.12 real [lib.real]
26.1.2.13 sin [lib.sin]
26.1.2.14 sinh [lib.sinh]
26.1.2.15 sqrt [lib.sqrt]
26.2 Numeric arrays [lib.numarray]
26.2.1 Template class valarray<T> [lib.template.valarray]
26.2.1.1 valarray constructors [lib.valarray.cons]
26.2.1.2 valarray destructor [lib.valarray.des]
26.2.1.3 valarray assignment [lib.valarray.op=]
26.2.1.4 valarray length access [lib.valarray::length]
26.2.1.5 valarray pointer conversion [lib.valarray.ptr]
26.2.1.6 valarray element access [lib.valarray.access]
26.2.1.7 valarray subset operations [lib.valarray.sub]
26.2.1.8 valarray unary operators [lib.valarray.unary]
26.2.1.9 valarray binary operators with scalars [lib.valarray.binary.scal]
26.2.1.10 valarray computed assigns with scalars [lib.valarray.cassign.scal]
26.2.1.11 valarray binary operations with other arrays [lib.valarray.bin.array]
26.2.1.12 valarray computed assignments with other arrays [lib.valarray.assign.array]
26.2.1.13 valarray comparison operators with scalars [lib.valarray.comp.scal]
26.2.1.14 valarray comparison operators with other arrays [lib.valarray.comp.array]
26.2.1.15 valarray sum function [lib.valarray.sum]
26.2.1.16 valarray fill function [lib.valarray.fill]
26.2.1.17 valarray transcendentals [lib.valarray.transcend]
26.2.1.18 valarray min and max functions [lib.valarray.minmax]
26.2.1.19 valarray shift function [lib.valarray.shift]
26.2.1.20 valarray mapping functions [lib.valarray.map]
26.2.1.21 valarray free function [lib.valarray.free]
26.2.2 Class slice [lib.class.slice]
26.2.2.1 slice constructors [lib.cons.slice]
26.2.2.2 slice access functions [lib.slice.access]
26.2.3 Template class slice_array [lib.template.slice.array]
26.2.3.1 slice_array constructors [lib.cons.slice.arr]
26.2.3.2 slice_array assignment [lib.slice.arr.assign]
26.2.3.3 slice_array computed assignment [lib.slice.arr.comp.assign]
26.2.3.4 slice_array fill function [lib.slice.arr.fill]
26.2.4 The gslice class [lib.class.gslice]
26.2.4.1 gslice constructors [lib.gslice.cons]
26.2.4.2 gslice access functions [lib.gslice.access]
26.2.5 Template class gslice_array [lib.template.gslice.array]
26.2.5.1 gslice_array constructors [lib.gslice.array.cons]
26.2.5.2 gslice_array assignment [lib.gslice.array.assign]
26.2.5.3 gslice_array computed assignment [lib.gslice.array.comp.assign]
26.2.5.4 gslice_array fill function [lib.gslice.array.fill]
26.2.6 Template class mask_array [lib.template.mask.array]
26.2.6.1 mask_array constructors [lib.mask.array.cons]
26.2.6.2 mask_array assignment [lib.mask.array.assign]
26.2.6.3 mask_array computed assignment [lib.mask.array.comp.assign]
26.2.6.4 mask_array fill function [lib.mask.array.fill]
26.2.7 Template class indirect_array [lib.template.indirect.array]
26.2.7.1 indirect_array constructors [lib.indirect.array.cons]
26.2.7.2 indirect_array assignment [lib.indirect.array.assign]
26.2.7.3 indirect_array computed assignment [lib.indirect.array.comp.assign]
26.2.7.4 indirect_array fill function [lib.indirect.array.fill]
26.3 Generalized numeric operations [lib.numeric.ops]
26.3.1 Accumulate [lib.accumulate]
26.3.2 Inner product [lib.inner.product]
26.3.3 Partial sum [lib.partial.sum]
26.3.4 Adjacent difference [lib.adjacent.difference]
26.4 C Library [lib.c.math]
27 Input/output library [lib.input.output]
27.1 Iostreams [lib.iostreams]
27.1.1 Iostream character traits [lib.iostream.traits]
27.1.1.1 Template struct ios_baggage [lib.ios.baggage]
27.1.1.2 Template struct ios_char_baggage [lib.ios.char.baggage]
27.1.1.2.1 Type ios_char_baggage::INT_T [lib.ios.char.baggage::int.t]
27.1.1.2.2 Type ios_char_baggage::char_type [lib.ios.char.baggage::char.type]
27.1.1.2.3 Type ios_char_baggage::int_type [lib.ios.char.baggage::int.type]
27.1.1.2.4 ios_char_baggage::to_char_type [lib.ios.char.baggage::to.char.type]
27.1.1.2.5 ios_char_baggage::to_int_type [lib.ios.char.baggage::to.int.type]
27.1.1.2.6 ios_char_baggage::eq_char_type [lib.ios.char.baggage::eq.char.type]
27.1.1.2.7 ios_char_baggage::eq_int_type [lib.ios.char.baggage::eq.int.type]
27.1.1.2.8 ios_char_baggage::eof [lib.ios.char.baggage::eof]
27.1.1.2.9 ios_char_baggage::not_eof [lib.ios.char.baggage::not.eof]
27.1.1.2.10 ios_char_baggage::is_eof [lib.ios.char.baggage::is.eof]
27.1.1.2.11 ios_char_baggage::newline [lib.ios.char.baggage::newline]
27.1.1.2.12 ios_char_baggage::is_whitespace [lib.ios.char.baggage::is.whitespace]
27.1.1.2.13 ios_char_baggage::eos [lib.ios.char.baggage::eos]
27.1.1.2.14 ios_char_baggage::length [lib.ios.char.baggage::length]
27.1.1.2.15 ios_char_baggage::copy [lib.ios.char.baggage::copy]
27.1.2 Positional information [lib.positional]
27.1.2.1 Template struct ios_pos_baggage [lib.ios.pos.baggage]
27.1.2.1.1 Type ios_pos_baggage::OFF_T [lib.ios.pos.baggage::off.t]
27.1.2.1.2 Type ios_pos_baggage::off_type [lib.ios.pos.baggage::off.type]
27.1.2.1.3 Type ios_pos_baggage::POS_T [lib.ios.pos.baggage::pos.t]
27.1.2.1.4 Type ios_pos_baggage::pos_type [lib.ios.pos.baggage::pos.type]
27.1.2.2 Type OFF_T requirements [lib.off.t.reqmts]
27.1.2.3 Type POS_T requirements [lib.pos.t.reqmts]
27.1.2.3.1 POS_T constructors [lib.pos.t.cons]
27.1.2.3.2 POS_T::offset [lib.ios.pos.t.offset]
27.1.2.3.3 POS_T::operator- [lib.ios.pos.t.op-.pos.t]
27.1.2.3.4 POS_T::operator+= [lib.ios.pos.t.op+=]
27.1.2.3.5 POS_T::operator-= [lib.ios.pos.t.op-=]
27.1.2.3.6 POS_T::operator+ [lib.ios.pos.t.op+]
27.1.2.3.7 POS_T::operator- [lib.ios.pos.t.op-.off.t]
27.1.2.3.8 POS_T::operator== [lib.ios.pos.t.op==]
27.1.2.3.9 POS_T::operator!= [lib.ios.pos.t.op!=]
27.1.2.4 Type streamoff [lib.streamoff]
27.1.2.5 Type streamsize [lib.streamsize]
27.1.2.6 Class wstreamoff [lib.wstreamoff]
27.1.2.7 Class streampos [lib.streampos]
27.1.2.8 Class \f7wstreampos [lib.wstreampos]
27.1.2.8.1 streampos constructor [lib.streampos.cons]
27.1.2.8.2 streampos::offset [lib.streampos::offset]
27.1.2.8.3 streampos::operator- [lib.streampos::op-.sp]
27.1.2.8.4 streampos::operator+= [lib.streampos::op+=]
27.1.2.8.5 streampos::operator-= [lib.streamos::op-=]
27.1.2.8.6 streampos::operator+ [lib.streampos::op+]
27.1.2.8.7 streampos::operator- [lib.streampos::op-.off]
27.1.2.8.8 streampos::operator== [lib.streampos::op==]
27.1.2.8.9 streampos::operator!= [lib.op!=.streampos]
27.1.3 Base class ios and manipulators [lib.ios.base]
27.1.3.1 Template class basic_ios [lib.ios]
27.1.3.1.1 Class basic_ios::failure [lib.ios::failure]
27.1.3.1.2 Type basic_ios::fmtflags [lib.ios::fmtflags]
27.1.3.1.3 Type basic_ios::iostate [lib.ios::iostate]
27.1.3.1.4 Type basic_ios::openmode [lib.ios::openmode]
27.1.3.1.5 Type basic_ios::seekdir [lib.ios::seekdir]
27.1.3.1.6 Class basic_ios::Init [lib.ios::Init]
27.1.3.1.7 basic_ios::basic_ios constructor [lib.basic.ios.sb.cons]
27.1.3.1.8 basic_ios destructor [lib.basic.ios.des]
27.1.3.1.9 basic_ios::operator bool [lib.ios::operator.bool]
27.1.3.1.10 basic_ios::operator! [lib.ios::operator!]
27.1.3.1.11 basic_ios::copyfmt [lib.ios::copyfmt]
27.1.3.1.12 basic_ios::tie [lib.ios::tie]
27.1.3.1.13 basic_ios::rdbuf [lib.ios::rdbuf]
27.1.3.1.14 basic_ios::rdstate [lib.ios::rdstate]
27.1.3.1.15 basic_ios::clear(iostate) [lib.ios::clear.basic.ios]
27.1.3.1.16 basic_ios::setstate(iostate) [lib.ios::setstate.basic.ios]
27.1.3.1.17 basic_ios::good [lib.ios::good]
27.1.3.1.18 basic_ios::eof [lib.ios::eof]
27.1.3.1.19 basic_ios::fail [lib.ios::fail]
27.1.3.1.20 basic_ios::bad [lib.ios::bad]
27.1.3.1.21 basic_ios::exceptions [lib.ios::exceptions]
27.1.3.1.22 basic_ios::flags [lib.ios::flags]
27.1.3.1.23 basic_ios::setf(fmtflags) [lib.ios::setf]
27.1.3.1.24 basic_ios::unsetf(fmtflags) [lib.ios::unsetf]
27.1.3.1.25 basic_ios::fill [lib.ios::fill]
27.1.3.1.26 basic_ios::precision [lib.ios::precision]
27.1.3.1.27 basic_ios::width [lib.ios::width]
27.1.3.1.28 basic_ios::imbue [lib.ios::imbue]
27.1.3.1.29 basic_ios::getloc [lib.ios::getloc]
27.1.3.1.30 basic_ios::xalloc [lib.ios::xalloc]
27.1.3.1.31 basic_ios::iword [lib.ios::iword]
27.1.3.1.32 basic_ios::pword [lib.ios::pword]
27.1.3.1.33 basic_ios constructor [lib.basic.ios.cons]
27.1.3.1.34 basic_ios::init [lib.basic.ios::init]
27.1.3.2 Standard basic_ios manipulators [lib.std.ios.manip]
27.1.3.2.1 fmtflags manipulators [lib.fmtflags.manip]
27.1.3.2.2 basic_showpoint [lib.basic.showpoint]
27.1.3.2.3 adjustfield manipulators [lib.adjustfield.manip]
27.1.3.2.4 basefield manipulators [lib.basefield.manip]
27.1.3.2.5 floatfield manipulators [lib.floatfield.manip]
27.1.4 Standard iostream objects [lib.iostream.objects]
27.1.4.1 Object cin [lib.cin]
27.1.4.2 Object cout [lib.cout]
27.1.4.3 Object cerr [lib.cerr]
27.1.4.4 Object clog [lib.clog]
27.2 Default stream buffers and streams [lib.default.iostreams]
27.2.1 Stream buffers [lib.stream.buffers]
27.2.1.1 Stream buffer requirements [lib.streambuf.reqts]
27.2.1.2 Template class basic_streambuf<charT,baggage> [lib.streambuf]
27.2.1.2.1 basic_streambuf destructor [lib.basic.streambuf.des]
27.2.1.2.2 basic_streambuf::pubseekoff [lib.streambuf::pubseekoff]
27.2.1.2.3 basic_streambuf::pubseekpos [lib.streambuf::pubseekpos]
27.2.1.2.4 basic_streambuf::pubsetbuf [lib.streambuf::pubsetbuf]
27.2.1.2.5 basic_streambuf::in_avail [lib.streambuf::in.avail]
27.2.1.2.6 basic_streambuf::pubsync [lib.streambuf::pubsync]
27.2.1.2.7 basic_streambuf::sbumpc [lib.streambuf::sbumpc]
27.2.1.2.8 basic_streambuf::sgetc [lib.streambuf::sgetc]
27.2.1.2.9 basic_streambuf::sgetn [lib.streambuf::sgetn]
27.2.1.2.10 basic_streambuf::snextc [lib.streambuf::snextc]
27.2.1.2.11 basic_streambuf::sputbackc [lib.streambuf::sputbackc]
27.2.1.2.12 basic_streambuf::sungetc [lib.streambuf::sungetc]
27.2.1.2.13 basic_streambuf::sputc [lib.streambuf::sputc]
27.2.1.2.14 basic_streambuf::sputn [lib.streambuf::sputn]
27.2.1.2.15 basic_streambuf constructor [lib.basic.streambuf.cons]
27.2.1.2.16 basic_streambuf::eback [lib.streambuf::eback]
27.2.1.2.17 basic_streambuf::gptr [lib.streambuf::gptr]
27.2.1.2.18 basic_streambuf::egptr [lib.streambuf::egptr]
27.2.1.2.19 basic_streambuf::gbump [lib.streambuf::gbump]
27.2.1.2.20 basic_streambuf::setg [lib.streambuf::setg]
27.2.1.2.21 basic_streambuf::pbase [lib.streambuf::pbase]
27.2.1.2.22 basic_streambuf::pptr [lib.streambuf::pptr]
27.2.1.2.23 basic_streambuf::epptr [lib.streambuf::epptr]
27.2.1.2.24 basic_streambuf::pbump [lib.streambuf::pbump]
27.2.1.2.25 basic_streambuf::setp [lib.streambuf::setp]
27.2.1.2.26 basic_streambuf::overflow [lib.streambuf::overflow]
27.2.1.2.27 basic_streambuf::pbackfail [lib.streambuf::pbackfail]
27.2.1.2.28 basic_streambuf::showmany\u\s815)\d [lib.streambuf::showmany]
27.2.1.2.29 basic_streambuf::underflow [lib.streambuf::underflow]
27.2.1.2.30 basic_streambuf::uflow [lib.streambuf::uflow]
27.2.1.2.31 basic_streambuf::xsgetn [lib.streambuf::xsgetn]
27.2.1.2.32 basic_streambuf::xsputn [lib.streambuf::xsputn]
27.2.1.2.33 basic_streambuf::seekoff [lib.streambuf::seekoff]
27.2.1.2.34 basic_streambuf::seekpos [lib.streambuf::seekpos]
27.2.1.2.35 basic_streambuf::setbuf [lib.streambuf::setbuf]
27.2.1.2.36 basic_streambuf::sync [lib.streambuf::sync]
27.2.1.2.37 basic_streambuf::read_byte [lib.streambuf::read.byte]
27.2.1.2.38 basic_streambuf::write_byte [lib.streambuf::write.byte]
27.2.2 Input streams [lib.input.streams]
27.2.2.1 Template class basic_istream [lib.istream]
27.2.2.1.1 basic_istream constructor [lib.basic.istream.cons]
27.2.2.1.2 basic_istream destructor [lib.basic.istream.des]
27.2.2.1.3 basic_istream::ipfx [lib.istream::ipfx]
27.2.2.1.4 basic_istream::isfx [lib.istream::isfx]
27.2.2.1.5 basic_istream::sync [lib.istream::sync]
27.2.2.2 Formatted input functions [lib.istream.formatted]
27.2.2.2.1 Common requirements [lib.istream.formatted.reqmts]
27.2.2.2.2 basic_istream::operator>> [lib.istream::extractors]
27.2.2.3 Unformatted input functions [lib.istream.unformatted]
27.2.2.3.1 basic_istream::get [lib.istream::get]
27.2.2.3.2 basic_istream::getline [lib.istream::getline]
27.2.2.3.3 basic_istream::ignore [lib.istream::ignore]
27.2.2.3.4 basic_istream::read [lib.istream::read]
27.2.2.3.5 basic_istream::read_byte [lib.istream::read.byte]
27.2.2.3.6 basic_istream::readsome [lib.istream::readsome]
27.2.2.3.7 basic_istream::peek [lib.istream::peek]
27.2.2.3.8 basic_istream::putback [lib.istream::putback]
27.2.2.3.9 basic_istream::unget [lib.istream::unget]
27.2.2.3.10 basic_istream::gcount [lib.istream::gcount]
27.2.2.4 Standard basic_istream manipulators [lib.basic.istream.manip]
27.2.3 Template class istreambuf_iterator [lib.istreambuf.iterator]
27.2.3.1 Template class istreambuf_iterator::proxy [lib.istreambuf.iterator::proxy]
27.2.3.2 istreambuf_iterator constructors [lib.istreambuf.iterator.cons]
27.2.3.3 istreambuf_iterator::operator* [lib.istreambuf.iterator::op*]
27.2.3.4 istreambuf_iterator::operator++ [lib.istreambuf.iterator::op++]
27.2.3.5 istreambuf_iterator::equal [lib.istreambuf.iterator::equal]
27.2.3.6 iterator_category [lib.iterator.category.i]
27.2.3.7 operator== [lib.istreambuf.iterator::op==]
27.2.3.8 operator!= [lib.istreambuf.iterator::op!=]
27.2.4 Output streams [lib.output.streams]
27.2.4.1 Template class basic_ostream [lib.ostream]
27.2.4.1.1 basic_ostream constructor [lib.basic.ostream.sb.cons]
27.2.4.1.2 basic_ostream destructor [lib.basic.ostream.des]
27.2.4.1.3 basic_ostream::opfx [lib.ostream::opfx]
27.2.4.1.4 basic_ostream::osfx [lib.ostream::osfx]
27.2.4.1.5 basic_ostream::flush [lib.ostream::flush]
27.2.4.2 Formatted output functions [lib.ostream.formatted]
27.2.4.2.1 Common requirements [lib.ostream.formatted.reqmts]
27.2.4.2.2 basic_ostream::operator<< [lib.ostream.inserters]
27.2.4.3 Unformatted output functions [lib.ostream.unformatted]
27.2.4.3.1 basic_ostream::put [lib.ostream::put]
27.2.4.3.2 basic_ostream::write [lib.ostream::write.str]
27.2.4.3.3 basic_ostream::write_byte [lib.ostream::write.byte]
27.2.4.4 Standard basic_ostream manipulators [lib.basic.ostream.manip]
27.2.4.4.1 endl [lib.endl]
27.2.4.4.2 ends [lib.ends]
27.2.4.4.3 flush [lib.flush]
27.2.5 Template class ostreambuf_iterator [lib.ostreambuf.iterator]
27.3 Stream manipulators [lib.manipulators]
27.3.1 Input manipulators [lib.input.manip]
27.3.1.1 Template class basic_imanip [lib.template.basic.imanip]
27.3.1.1.1 basic_imanip<T> constructor [lib.basic.imanip.basic.ios.cons]
27.3.1.1.2 operator>> [lib.ext.basic.imanip]
27.3.2 Template class basic_omanip [lib.template.basic.omanip]
27.3.2.1 basic_omanip constructor [lib.basic.omanip.basic.ios.cons]
27.3.2.2 operator<< [lib.ins.basic.omanip]
27.3.3 Template class basic_smanip [lib.template.basic.smanip]
27.3.3.1 basic_smanip constructor [lib.basic.smanip.basic.ios.cons]
27.3.3.2 operator>> [lib.ext.basic.smanip]
27.3.3.3 operator<< [lib.ins.basic.smanip]
27.3.4 Standard manipulators [lib.std.manip]
27.3.4.1 basic_resetiosflags [lib.basic.resetiosflags]
27.3.4.2 basic_setiosflags [lib.basic.setiosflags]
27.3.4.3 basic_setbase [lib.basic.setbase]
27.3.4.4 basic_setfill [lib.basic.setfill]
27.3.4.5 basic_setprecision [lib.basic.setprecision]
27.3.4.6 basic_setw [lib.basic.setw]
27.4 String-based streams [lib.string.streams]
27.4.1 char* streams [lib.str.strstreams]
27.4.1.1 Template class basic_strstreambuf [lib.strstreambuf]
27.4.1.1.1 basic_strstreambuf constructors [lib.basic.strstreambuf.cons]
27.4.1.1.2 basic_strstreambuf destructor [lib.basic.strstreambuf.des]
27.4.1.1.3 basic_strstreambuf::freeze [lib.strstreambuf::freeze]
27.4.1.1.4 basic_strstreambuf::str [lib.strstreambuf::str]
27.4.1.1.5 basic_strstreambuf::pcount [lib.strstreambuf::pcount]
27.4.1.1.6 basic_strstreambuf::overflow [lib.strstreambuf::overflow]
27.4.1.1.7 basic_strstreambuf::pbackfail [lib.strstreambuf::pbackfail]
27.4.1.1.8 basic_strstreambuf::showmany [lib.strstreambuf::showmany]
27.4.1.1.9 basic_strstreambuf::underflow [lib.strstreambuf::underflow]
27.4.1.1.10 basic_strstreambuf::uflow [lib.strstreambuf::uflow]
27.4.1.1.11 basic_strstreambuf::xsgetn [lib.strstreambuf::xsgetn]
27.4.1.1.12 basic_strstreambuf::xsputn [lib.strstreambuf::xsputn]
27.4.1.1.13 basic_strstreambuf::seekoff [lib.strstreambuf::seekoff]
27.4.1.1.14 basic_strstreambuf::seekpos [lib.strstreambuf::seekpos]
27.4.1.1.15 basic_strstreambuf::setbuf [lib.strstreambuf::setbuf]
27.4.1.1.16 basic_strstreambuf::sync [lib.strstreambuf::sync]
27.4.1.2 Template class basic_istrstream [lib.istrstream]
27.4.1.2.1 basic_istrstream constructors [lib.basic.istrstream.cons]
27.4.1.2.2 basic_istrstream destructor [lib.basic.istrstream.des]
27.4.1.2.3 basic_istrstream::rdbuf [lib.istrstream::rdbuf]
27.4.1.2.4 basic_istrstream::str [lib.istrstream::str]
27.4.1.3 Template class basic_ostrstream [lib.ostrstream]
27.4.1.3.1 basic_ostrstream constructors [lib.basic.ostrstream.cons]
27.4.1.3.2 basic_ostrstream destructor [lib.basic.ostrstream.des]
27.4.1.3.3 basic_ostrstream::rdbuf [lib.ostrstream::rdbuf]
27.4.1.3.4 basic_ostrstream::freeze [lib.ostrstream::freeze]
27.4.1.3.5 basic_ostrstream::str [lib.ostrstream::str]
27.4.1.3.6 basic_ostrstream::pcount [lib.ostrstream::pcount]
27.4.2 string streams [lib.string.strstreams]
27.4.2.1 Template class basic_stringbuf [lib.stringbuf]
27.4.2.1.1 basic_stringbuf constructors [lib.basic.stringbuf.cons]
27.4.2.1.2 basic_stringbuf destructor [lib.basic.stringbuf.des]
27.4.2.1.3 basic_stringbuf::str [lib.stringbuf::str]
27.4.2.1.4 basic_stringbuf::overflow [lib.stringbuf::overflow]
27.4.2.1.5 basic_stringbuf::pbackfail [lib.stringbuf::pbackfail]
27.4.2.1.6 basic_stringbuf::showmany [lib.stringbuf::showmany]
27.4.2.1.7 basic_stringbuf::underflow [lib.stringbuf::underflow]
27.4.2.1.8 basic_stringbuf::uflow [lib.stringbuf::uflow]
27.4.2.1.9 basic_stringbuf::xsgetn [lib.stringbuf::xsgetn]
27.4.2.1.10 basic_stringbuf::xsputn [lib.stringbuf::xsputn]
27.4.2.1.11 basic_stringbuf::seekoff [lib.stringbuf::seekoff]
27.4.2.1.12 basic_stringbuf::seekpos [lib.stringbuf::seekpos]
27.4.2.1.13 basic_stringbuf::setbuf [lib.stringbuf::setbuf]
27.4.2.1.14 basic_stringbuf::sync [lib.stringbuf::sync]
27.4.2.2 Template class basic_istringstream [lib.istringstream]
27.4.2.2.1 basic_istringstream constructors [lib.basic.istringstream.m.cons]
27.4.2.2.2 basic_istringstream destructor [lib.basic.istringstream.des]
27.4.2.2.3 basic_istringstream::rdbuf [lib.istringstream::rdbuf]
27.4.2.2.4 basic_istringstream::str [lib.istringstream::str]
27.4.2.3 Class basic_ostringstream [lib.ostringstream]
27.4.2.3.1 basic_ostringstream constructors [lib.basic.ostringstream.cons]
27.4.2.3.2 basic_ostringstream destructor [lib.basic.ostringstream.des]
27.4.2.3.3 basic_ostringstream::rdbuf [lib.ostringstream::rdbuf]
27.4.2.3.4 basic_ostringstream::str [lib.ostringstream::str]
27.5 File-based streams [lib.file.streams]
27.5.1 Multi-byte conversions [lib.conv.fstreams]
27.5.1.1 Template class conv_baggage [lib.conv.baggage]
27.5.1.2 Template class ios_conv_baggage [lib.ios.conv.baggage]
27.5.1.2.1 Struct ios_conv_baggage<STATE_T> [lib.ios.conv.baggage.state.t]
27.5.1.2.2 Struct ios_conv_baggage<wstreampos> [lib.ios.conv.baggage.wstreampos]
27.5.1.3 Template class basic_convbuf [lib.basic.convbuf]
27.5.1.3.1 basic_convbuf constructor [lib.basic.convbuf.cons]
27.5.1.3.2 basic_convbuf destructor [lib.basic.convbuf.des]
27.5.1.3.3 basic_convbuf::overflow [lib.basic.convbuf.overflow]
27.5.1.3.4 basic_convbuf::pbackfail [lib.basic.convbuf::pbackfail]
27.5.1.3.5 basic_convbuf::underflow [lib.basic.convbuf::underflow]
27.5.1.3.6 basic_convbuf::uflow [lib.basic.convbuf::uflow]
27.5.1.3.7 basic_convbuf::xsgetn [lib.convbuf::xsgetn]
27.5.1.3.8 basic_convbuf::xsputn [lib.convbuf::xsputn]
27.5.1.3.9 basic_convbuf::seekoff [lib.convbuf::seekoff]
27.5.1.3.10 basic_convbuf::seekpos [lib.convbuf::seekpos]
27.5.1.3.11 basic_convbuf::setbuf [lib.convbuf::setbuf]
27.5.1.3.12 basic_convbuff::sync [lib.convbuf::sync]
27.5.1.4 Examples of trait specialization [lib.examples.traits]
27.5.2 File streams [lib.fstreams]
27.5.2.1 Template class basic_filebuf [lib.filebuf]
27.5.2.1.1 basic_filebuf constructor [lib.basic.filebuf.cons]
27.5.2.1.2 basic_filebuf destructor [lib.basic.filebuf.des]
27.5.2.1.3 basic_filebuf::is_open [lib.filebuf::is.open]
27.5.2.1.4 basic_filebuf::open [lib.filebuf::open]
27.5.2.1.5 basic_filebuf::close [lib.filebuf::close]
27.5.2.1.6 basic_filebuf::overflow [lib.filebuf::overflow]
27.5.2.1.7 basic_filebuf::pbackfail [lib.filebuf::pbackfail]
27.5.2.1.8 basic_filebuf::showmany [lib.filebuf::showmany]
27.5.2.1.9 basic_filebuf::underflow [lib.filebuf::underflow]
27.5.2.1.10 basic_filebuf::uflow [lib.filebuf::uflow]
27.5.2.1.11 basic_filebuf::xsgetn [lib.filebuf::xsgetn]
27.5.2.1.12 basic_filebuf::xsputn [lib.filebuf::xsputn]
27.5.2.1.13 basic_filebuf::seekoff [lib.filebuf::seekoff]
27.5.2.1.14 basic_filebuf::seekpos [lib.filebuf::seekpos]
27.5.2.1.15 basic_filebuf::setbuf [lib.filebuf::setbuf]
27.5.2.1.16 basic_filebuf::sync [lib.filebuf::sync]
27.5.2.2 Template class basic_ifstream [lib.ifstream]
27.5.2.2.1 basic_ifstream constructors [lib.basic.ifstream.cons]
27.5.2.2.2 basic_ifstream destructor [lib.basic.ifstream.des]
27.5.2.2.3 basic_ifstream::rdbuf [lib.ifstream::rdbuf]
27.5.2.2.4 basic_ifstream::is_open [lib.ifstream::is.open]
27.5.2.2.5 basic_ifstream::open [lib.ifstream::open]
27.5.2.2.6 basic_ifstream::close [lib.ifstream::close]
27.5.2.3 Template class basic_ofstream [lib.ofstream]
27.5.2.3.1 basic_ofstream constructors [lib.basic.ofstream.cons]
27.5.2.3.2 basic_ofstream destructor [lib.basic.ofstream.des]
27.5.2.3.3 basic_ofstream::rdbuf [lib.ofstream::rdbuf]
27.5.2.3.4 basic_ofstream::is_open [lib.ofstream::is.open]
27.5.2.3.5 basic_ofstream::open [lib.ofstream::open]
27.5.2.3.6 basic_ofstream::close [lib.ofstream::close]
27.5.3 stdio streams [lib.stdio.fstreams]
27.5.3.1 Template class basic_stdiobuf [lib.basic.stdiobuf]
27.5.3.1.1 basic_stdiobuf::basic_stdiobuf constructor [lib.basic.stdiobuf.cons]
27.5.3.1.2 basic_stdiobuf destructor [lib.basic.stdiobuf.des]
27.5.3.1.3 basic_stdiobuf::buffered [lib.basic.stdiobuf::buffered]
27.5.3.1.4 basic_stdiobuf::overflow [lib.basic.stdiobuf::overflow]
27.5.3.1.5 basic_stdiobuf::pbackfail [lib.basic.stdiobuf::pbackfail]
27.5.3.1.6 basic_stdiobuf::showmany [lib.basic.stdiobuf::showmany]
27.5.3.1.7 basic_stdiobuf::underflow [lib.basic.stdiobuf::underflow]
27.5.3.1.8 basic_stdiobuf::uflow [lib.basic.stdiobuf::uflow]
27.5.3.1.9 basic_stdiobuf::xsgetn [lib.basic.stdiobuf::xsgetn]
27.5.3.1.10 basic_stdiobuf::xsputn [lib.basic.stdiobuf::xsputn]
27.5.3.1.11 basic_stdiobuf::seekoff [lib.basic.stdiobuf::seekoff]
27.5.3.1.12 basic_stdiobuf::seekpos [lib.basic.stdiobuf::seekpos]
27.5.3.1.13 basic_stdiobuf::setbuf [lib.basic.stdiobuf::setbuf]
27.5.3.1.14 basic_stdiobuf::sync [lib.basic.stdiobuf::sync]
27.5.3.2 Class istdiostream [lib.istdiostream]
27.5.3.2.1 istdiostream::istdiostream constructor [lib.istdiostream.cons]
27.5.3.2.2 istdiostream destructor [lib.istdiostream.des]
27.5.3.2.3 istdiostream::rdbuf [lib.istdiostream::rdbuf]
27.5.3.2.4 istdiostream::buffered [lib.istdiostream::buffered]
27.5.3.2.5 istdiostream::buffered [lib.istdiostream::buffered.b]
27.5.3.3 Class ostdiostream [lib.ostdiostream]
27.5.3.3.1 ostdiostream constructor [lib.ostdiostream.cons]
27.5.3.3.2 ostdiostream destructor [lib.ostdiostream.des]
27.5.3.3.3 ostdiostream::rdbuf [lib.ostdiostream::rdbuf]
27.5.3.3.4 ostdiostream::buffered [lib.ostdiostream::buffered]
27.5.3.3.5 ostdiostream::buffered [lib.ostdiostream::buffered.b]
A Grammar summary [gram]
A.1 Keywords [gram.key]
A.2 Lexical conventions [gram.lex]
A.3 Basic concepts [gram.basic]
A.4 Expressions [gram.expr]
A.5 Statements [gram.stmt.stmt]
A.6 Declarations [gram.dcl.dcl]
A.7 Declarators [gram.dcl.decl]
A.8 Classes [gram.class]
A.9 Derived classes [gram.class.derived]
A.10 Special member functions [gram.special]
A.11 Overloading [gram.over]
A.12 Templates [gram.temp]
A.13 Exception handling [gram.except]
B Implementation quantities [limits]
C Compatibility [diff]
C.1 Extensions [diff.c]
C.1.1 C++ features available in 1985 [diff.early]
C.1.2 C++ features added since 1985 [diff.c++]
C.2 C++ and ISO C [diff.iso]
C.2.1 Clause _lex_: lexical conventions [diff.lex]
C.2.2 Clause _basic_: basic concepts [diff.basic]
C.2.3 Clause _expr_: expressions [diff.expr]
C.2.4 Clause _stmt.stmt_: statements [diff.stat]
C.2.5 Clause _dcl.dcl_: declarations [diff.dcl]
C.2.6 Clause _dcl.decl_: declarators [diff.decl]
C.2.7 Clause _class_: classes [diff.class]
C.2.8 Clause _cpp_: preprocessing directives [diff.cpp]
C.3 Anachronisms [diff.anac]
C.3.1 Old style function definitions [diff.fct.def]
C.3.2 Old style base class initializer [diff.base.init]
C.3.3 Assignment to this [diff.this]
C.3.4 Cast of bound pointer [diff.bound]
C.3.5 Nonnested classes [diff.class.nonnested]
C.4 Standard C library [diff.library]
C.4.1 Modifications to headers [diff.mods.to.headers]
C.4.2 Modifications to definitions [diff.mods.to.definitions]
C.4.2.1 Type wchar_t [diff.wchar.t]
C.4.2.2 Header <iso646.h> [diff.header.iso646.h]
C.4.2.3 Macro NULL [diff.null]
C.4.3 Modifications to declarations [diff.mods.to.declarations]
C.4.4 Modifications to behavior [diff.mods.to.behavior]
C.4.4.1 Macro offsetof(type, member-designator) <stddef.h> [diff.offsetof]
C.4.5 Names with external linkage [diff.extern.c.names]
D Future directions [future.directions]