File: stl.yo

package info (click to toggle)
c%2B%2B-annotations 10.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 10,536 kB
  • ctags: 3,247
  • sloc: cpp: 19,157; makefile: 1,521; ansic: 165; sh: 128; perl: 90
file content (208 lines) | stat: -rw-r--r-- 5,671 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
includefile(stl/intro)

lsect(PREDEFINED)(Predefined function objects)
includefile(stl/predefined)

    subsect(Arithmetic function objects)
    includefile(stl/arithmetic)

    subsect(Relational function objects)
    includefile(stl/relational)

    subsect(Logical function objects)
    includefile(stl/logical)

    lsubsect(FUNADAPT)(Function adaptors)
    includefile(stl/adaptors)

        lsubsubsect(BIND)(The `bind' function template)
        includefile(stl/binders)

        lsubsubsect(NEGATORS)(Negators)
        includefile(stl/negators)

lsect(ITERATORS)(Iterators)
includefile(stl/iterators)

    lsubsect(DISTANCE)(std::distance)
    includefile(stl/distance)

    lsubsect(INSERTER)(Insert iterators)
    includefile(stl/insertiterators)

    lsubsect(ISTREAMITERATORS)(Iterators for `istream' objects)
    includefile(stl/istreamiterators)

        subsubsect(Iterators for `istreambuf' objects)
        includefile(stl/istreambufiterators)

    subsect(Iterators for `ostream' objects)
    includefile(stl/ostreamiterators)

        lsubsubsect(OSTREAMBUFITER)(Iterators for `ostreambuf' objects)
        includefile(stl/ostreambufiterators)

lsect(UNIQUEPTR)(The class 'unique_ptr')
includefile(stl/uniqueptr)

    subsect(Defining `unique_ptr' objects)
    includefile(stl/defining)

    lsubsect(UNIQUEPLAIN)(Creating a plain `unique_ptr')
    includefile(stl/uniqueplain)

    lsubsect(UNIQUEMOVE)(Moving  another `unique_ptr')
    includefile(stl/uniquemove)

    lsubsect(UNIQUENEW)(Pointing to a newly allocated object)
    includefile(stl/uniquenew)

    lsubsect(UNIQUEMEM)(Operators and members)
    includefile(stl/uniquemembers)

    subsect(Using `unique_ptr' objects for arrays)
    includefile(stl/uniquearrays)

    lsubsect(AUTOPTR)(The deprecated class 'auto_ptr')
    includefile(stl/autoptr)

lsect(SHAREDPTR)(The class 'shared_ptr')
includefile(stl/sharedptr)

    subsect(Defining `shared_ptr' objects)
    includefile(stl/definingshared)

    lsubsect(SHAREDPLAIN)(Creating a plain `shared_ptr')
    includefile(stl/sharedplain)

    lsubsect(SHAREDNEW)(Pointing to a newly allocated object)
    includefile(stl/sharednew)

    lsubsect(SHAREDMEM)(Operators and members)
    includefile(stl/sharedmembers)

    lsubsect(SHAREDCAST)(Casting shared pointers)
    includefile(stl/sharedcasts)

    lsubsect(SHAREDARRAY)(Using `shared_ptr' objects for arrays)
    includefile(stl/sharedarrays)

sect(Smart smart pointer construction: `make_shared' and `make_unique')
includefile(stl/makeshared)

COMMENT(TODO: Weak Pointers)

sect(Classes having pointer data members)
includefile(stl/classeshavingpointers)

lsect(LAMBDA)(Lambda expressions)
includefile(stl/lambda)

    subsect(Lambda expressions: syntax)
    includefile(stl/lambdasyntax)

    subsect(Using lambda expressions)
    includefile(stl/lambdause)

    subsect(Generic lambda expressions)
    includefile(stl/lambdac14)


sect(Regular Expressions)
includefile(stl/regularexp)

    subsect(The regular expression mini language)
    includefile(stl/regexlanguage)

        subsubsect(Character classes)
        includefile(stl/charclass)

    subsect(Defining regular expressions: std::regex)
    includefile(stl/regex)

    lsubsect(SMATCH)(Retrieving matches: std::match_results)
    includefile(stl/smatch)

    lsubsect(REGALG)(Regular expression matching functions)
    includefile(stl/regalg)

        subsubsect(The std::regex_constants::match_flag_type flags)
        includefile(stl/matchflags)

        lsubsubsect(REGMATCH)(Matching full texts: std::regex_match)
        includefile(stl/regexmatch)

        lsubsubsect(REGSRCH)(Partially matching text: std::regex_search)
        includefile(stl/regexsearch)

        lsubsubsect(FORMAT)(The member std::match:_results::format)
        includefile(stl/format)

        lsubsubsect(REGREP)(Modifying target strings: std::regex_replace)
        includefile(stl/regexreplace)

sect(Randomization and Statistical Distributions)
includefile(stl/statdist)

    subsect(Random Number Generators)
    includefile(stl/randomnumber)

    subsect(Statistical distributions)
    includefile(stl/statistical)

COMMENT(
    class discrete_distribution
    class piecewise_constant_distribution
    class piecewise_linear_distribution
END)

        lsubsubsect(BERNOULLI)(Bernoulli distribution)
        includefile(stl/bernoulli)

        lsubsubsect(BINOMIAL)(Binomial distribution)
        includefile(stl/binomial)

        subsubsect(Cauchy distribution)
        includefile(stl/cauchy)

        lsubsubsect(CHISQUARED)(Chi-squared distribution)
        includefile(stl/chisquared)

        subsubsect(Extreme value distribution)
        includefile(stl/extremevalue)

        subsubsect(Exponential distribution)
        includefile(stl/exponential)

        subsubsect(Fisher F distribution)
        includefile(stl/fisherf)

        subsubsect(Gamma distribution)
        includefile(stl/gamma)

        subsubsect(Geometric distribution)
        includefile(stl/geometric)

        subsubsect(Log-normal distribution)
        includefile(stl/lognormal)

        subsubsect(Normal distribution)
        includefile(stl/normal)

        subsubsect(Negative binomial distribution)
        includefile(stl/negativebinomial)

        subsubsect(Poisson distribution)
        includefile(stl/poisson)

        subsubsect(Student t distribution)
        includefile(stl/studentt)

        subsubsect(Uniform int distribution)
        includefile(stl/uniformint)

        subsubsect(Uniform real distribution)
        includefile(stl/uniformreal)

        subsubsect(Weibull distribution)
        includefile(stl/weibull)