forked from cplusplus/draft
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxrefprev
More file actions
2757 lines (2757 loc) · 45.7 KB
/
xrefprev
File metadata and controls
2757 lines (2757 loc) · 45.7 KB
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
accumulate
adjacent.difference
adjustfield.manip
alg.adjacent.find
alg.all.of
alg.all_of
alg.any.of
alg.any_of
alg.binary.search
alg.c.library
alg.clamp
alg.copy
alg.count
alg.equal
alg.fill
alg.find
alg.find.end
alg.find.first.of
alg.foreach
alg.generate
alg.heap.operations
alg.is.permutation
alg.is_permutation
alg.lex.comparison
alg.merge
alg.min.max
alg.modifying.operations
alg.move
alg.none.of
alg.none_of
alg.nonmodifying
alg.nth.element
alg.partitions
alg.permutation.generators
alg.random.sample
alg.random.shuffle
alg.remove
alg.replace
alg.req
alg.req.general
alg.req.ind.cmp
alg.req.ind.copy
alg.req.ind.move
alg.req.ind.swap
alg.req.mergeable
alg.req.permutable
alg.req.sortable
alg.reverse
alg.rotate
alg.search
alg.set.operations
alg.shift
alg.sort
alg.sorting
alg.swap
alg.three.way
alg.transform
alg.unique
algorithm.stable
algorithm.syn
algorithms
algorithms.general
algorithms.parallel
algorithms.parallel.defns
algorithms.parallel.exceptions
algorithms.parallel.exec
algorithms.parallel.overloads
algorithms.parallel.user
algorithms.requirements
algorithms.results
alloc.errors
allocator.adaptor
allocator.adaptor.cnstr
allocator.adaptor.members
allocator.adaptor.syn
allocator.adaptor.types
allocator.globals
allocator.members
allocator.requirements
allocator.requirements.completeness
allocator.tag
allocator.traits
allocator.traits.members
allocator.traits.types
allocator.uses
allocator.uses.construction
allocator.uses.trait
alt.headers
any
any.assign
any.bad.any.cast
any.bad_any_cast
any.class
any.cons
any.modifiers
any.nonmembers
any.observers
any.synop
arithmetic.operations
arithmetic.operations.divides
arithmetic.operations.minus
arithmetic.operations.modulus
arithmetic.operations.multiplies
arithmetic.operations.negate
arithmetic.operations.plus
array
array.cons
array.creation
array.data
array.fill
array.members
array.overview
array.size
array.special
array.swap
array.syn
array.tuple
array.zero
assertions
assertions.assert
associative
associative.general
associative.map.syn
associative.reqmts
associative.reqmts.except
associative.set.syn
atomics
atomics.alias
atomics.fences
atomics.flag
atomics.general
atomics.lockfree
atomics.nonmembers
atomics.order
atomics.ref.float
atomics.ref.generic
atomics.ref.int
atomics.ref.memop
atomics.ref.ops
atomics.ref.pointer
atomics.syn
atomics.types.float
atomics.types.generic
atomics.types.int
atomics.types.memop
atomics.types.operations
atomics.types.pointer
atomics.wait
back.insert.iter.cons
back.insert.iter.op*
back.insert.iter.op++
back.insert.iter.op=
back.insert.iter.ops
back.insert.iterator
back.inserter
bad.alloc
bad.cast
bad.exception
bad.typeid
barrier.syn
basefield.manip
basic
basic.align
basic.compound
basic.def
basic.def.odr
basic.exec
basic.fundamental
basic.funscope
basic.indet
basic.ios.cons
basic.ios.members
basic.life
basic.link
basic.lookup
basic.lookup.argdep
basic.lookup.classref
basic.lookup.elab
basic.lookup.qual
basic.lookup.udir
basic.lookup.unqual
basic.lval
basic.memobj
basic.namespace
basic.pre
basic.scope
basic.scope.block
basic.scope.class
basic.scope.declarative
basic.scope.enum
basic.scope.hiding
basic.scope.namespace
basic.scope.param
basic.scope.pdecl
basic.scope.proto
basic.scope.temp
basic.start
basic.start.dynamic
basic.start.main
basic.start.static
basic.start.term
basic.stc
basic.stc.auto
basic.stc.dynamic
basic.stc.dynamic.allocation
basic.stc.dynamic.deallocation
basic.stc.dynamic.safety
basic.stc.inherit
basic.stc.static
basic.stc.thread
basic.string
basic.string.hash
basic.string.literals
basic.type.qualifier
basic.types
bidirectional.iterators
binary.search
bit
bit.cast
bit.count
bit.endian
bit.general
bit.pow.two
bit.rotate
bit.syn
bitmask.types
bitset
bitset.cons
bitset.hash
bitset.members
bitset.operators
bitset.syn
bitwise.operations
bitwise.operations.and
bitwise.operations.not
bitwise.operations.or
bitwise.operations.xor
byte.strings
c.files
c.locales
c.malloc
c.math
c.math.abs
c.math.fpclass
c.math.hypot3
c.math.lerp
c.math.rand
c.mb.wcs
c.strings
cassert.syn
category.collate
category.ctype
category.messages
category.monetary
category.numeric
category.time
cctype.syn
cerrno.syn
cfenv
cfenv.syn
cfloat.syn
char.traits
char.traits.require
char.traits.specializations
char.traits.specializations.char
char.traits.specializations.char16.t
char.traits.specializations.char16_t
char.traits.specializations.char32.t
char.traits.specializations.char32_t
char.traits.specializations.char8.t
char.traits.specializations.wchar.t
char.traits.typedefs
character.seq
charconv
charconv.from.chars
charconv.syn
charconv.to.chars
cinttypes.syn
class
class.abstract
class.access
class.access.base
class.access.nest
class.access.spec
class.access.virt
class.base.init
class.bit
class.cdtor
class.compare
class.compare.default
class.compare.secondary
class.conv
class.conv.ctor
class.conv.fct
class.copy
class.copy.assign
class.copy.ctor
class.copy.elision
class.ctor
class.default.ctor
class.derived
class.dtor
class.eq
class.expl.init
class.free
class.friend
class.gslice
class.gslice.overview
class.inhctor.init
class.init
class.local
class.mem
class.member.lookup
class.mfct
class.mfct.non-static
class.mfct.non-static.general
class.mi
class.name
class.nest
class.nested.type
class.paths
class.pre
class.prop
class.protected
class.qual
class.slice
class.slice.overview
class.spaceship
class.static
class.static.data
class.static.mfct
class.temporary
class.this
class.union
class.union.anon
class.virtual
classification
climits.syn
clocale.syn
cmath.syn
cmp
cmp.alg
cmp.categories
cmp.categories.pre
cmp.common
cmp.concept
cmp.partialord
cmp.result
cmp.strongord
cmp.weakord
cmplx.over
common.iter.access
common.iter.cmp
common.iter.const
common.iter.cust
common.iter.nav
common.iter.types
common.iterator
compare.syn
comparisons
comparisons.equal.to
comparisons.equal_to
comparisons.greater
comparisons.greater.equal
comparisons.greater_equal
comparisons.less
comparisons.less.equal
comparisons.less_equal
comparisons.not.equal.to
comparisons.not_equal_to
comparisons.three.way
complex
complex.literals
complex.member.ops
complex.members
complex.numbers
complex.ops
complex.special
complex.syn
complex.transcendentals
complex.value.ops
compliance
concept.assignable
concept.booleantestable
concept.common
concept.commonref
concept.constructible
concept.convertible
concept.copyconstructible
concept.default.init
concept.derived
concept.destructible
concept.equalitycomparable
concept.equiv
concept.invocable
concept.moveconstructible
concept.predicate
concept.regularinvocable
concept.relation
concept.same
concept.strictweakorder
concept.swappable
concept.totallyordered
concepts
concepts.arithmetic
concepts.callable
concepts.callable.general
concepts.compare
concepts.compare.general
concepts.equality
concepts.general
concepts.lang
concepts.lang.general
concepts.object
concepts.syn
condition.variable.syn
condition_variable.syn
conforming
conforming.overview
cons.slice
constexpr.functions
constraints
constraints.overview
container.adaptors
container.adaptors.general
container.gen.reqmts
container.insert.return
container.node
container.node.cons
container.node.dtor
container.node.modifiers
container.node.observers
container.node.overview
container.requirements
container.requirements.dataraces
container.requirements.general
containers
containers.general
contents
conv
conv.array
conv.bool
conv.double
conv.fctptr
conv.fpint
conv.fpprom
conv.func
conv.integral
conv.lval
conv.mem
conv.prom
conv.ptr
conv.qual
conv.rank
conv.rval
conventions
conversions
conversions.character
coroutine.handle
coroutine.handle.compare
coroutine.handle.con
coroutine.handle.export.import
coroutine.handle.hash
coroutine.handle.noop
coroutine.handle.noop.address
coroutine.handle.noop.observers
coroutine.handle.noop.promise
coroutine.handle.noop.resumption
coroutine.handle.observers
coroutine.handle.promise
coroutine.handle.resumption
coroutine.noop
coroutine.noop.coroutine
coroutine.promise.noop
coroutine.syn
coroutine.traits
coroutine.traits.primary
coroutine.trivial.awaitables
counted.iter.access
counted.iter.cmp
counted.iter.const
counted.iter.cust
counted.iter.elem
counted.iter.nav
counted.iterator
cpp
cpp.concat
cpp.cond
cpp.error
cpp.import
cpp.include
cpp.line
cpp.module
cpp.null
cpp.pragma
cpp.pragma.op
cpp.pre
cpp.predefined
cpp.replace
cpp.rescan
cpp.scope
cpp.stringize
cpp.subst
csetjmp.syn
csignal.syn
cstdarg.syn
cstddef.syn
cstdint
cstdint.general
cstdint.syn
cstdio.syn
cstdlib.syn
cstring.syn
ctime.syn
cuchar.syn
customization.point.object
cwchar.syn
cwctype.syn
dcl.align
dcl.ambig.res
dcl.array
dcl.asm
dcl.attr
dcl.attr.depend
dcl.attr.deprecated
dcl.attr.fallthrough
dcl.attr.grammar
dcl.attr.likelihood
dcl.attr.nodiscard
dcl.attr.noreturn
dcl.attr.nouniqueaddr
dcl.attr.unused
dcl.constexpr
dcl.constinit
dcl.dcl
dcl.decl
dcl.enum
dcl.fct
dcl.fct.def
dcl.fct.def.coroutine
dcl.fct.def.default
dcl.fct.def.delete
dcl.fct.def.general
dcl.fct.default
dcl.fct.spec
dcl.friend
dcl.init
dcl.init.aggr
dcl.init.list
dcl.init.ref
dcl.init.string
dcl.inline
dcl.link
dcl.meaning
dcl.mptr
dcl.name
dcl.pre
dcl.ptr
dcl.ref
dcl.spec
dcl.spec.auto
dcl.stc
dcl.struct.bind
dcl.type
dcl.type.auto.deduct
dcl.type.class.deduct
dcl.type.cv
dcl.type.decltype
dcl.type.elab
dcl.type.simple
dcl.typedef
declval
default.allocator
default.sentinels
definitions
defns.access
defns.arbitrary.stream
defns.argument
defns.argument.macro
defns.argument.templ
defns.argument.throw
defns.block
defns.block.stmt
defns.character
defns.character.container
defns.comparison
defns.component
defns.cond.supp
defns.const.subexpr
defns.deadlock
defns.default.behavior.func
defns.default.behavior.impl
defns.diagnostic
defns.direct-non-list-init
defns.dynamic.type
defns.dynamic.type.prvalue
defns.expression-equivalent
defns.handler
defns.ill.formed
defns.impl.defined
defns.impl.limits
defns.iostream.templates
defns.locale.specific
defns.modifier
defns.move.assign
defns.move.constr
defns.multibyte
defns.ntcts
defns.observer
defns.order.ptr
defns.parameter
defns.parameter.macro
defns.parameter.templ
defns.prog.def.spec
defns.prog.def.type
defns.projection
defns.referenceable
defns.regex.collating.element
defns.regex.finite.state.machine
defns.regex.format.specifier
defns.regex.matched
defns.regex.primary.equivalence.class
defns.regex.regular.expression
defns.regex.subexpression
defns.replacement
defns.repositional.stream
defns.required.behavior
defns.reserved.function
defns.signature
defns.signature.friend
defns.signature.member
defns.signature.member.spec
defns.signature.member.templ
defns.signature.spec
defns.signature.templ
defns.signature.templ.friend
defns.stable
defns.static.type
defns.traits
defns.unblock
defns.undefined
defns.unspecified
defns.valid
defns.well.formed
denorm.style
depr
depr.arith.conv.enum
depr.array.comp
depr.atomics
depr.atomics.flag
depr.atomics.nonmembers
depr.atomics.types.operations
depr.atomics.volatile
depr.c.headers
depr.c.headers.general
depr.c.headers.other
depr.capture.this
depr.ccomplex.syn
depr.codecvt.syn
depr.comma.subscript
depr.complex.h.syn
depr.conversions
depr.conversions.buffer
depr.conversions.general
depr.conversions.string
depr.cpp.headers
depr.cstdalign.syn
depr.cstdbool.syn
depr.ctgmath.syn
depr.default.allocator
depr.default.allocator
depr.except.spec
depr.fs.path.factory
depr.func.adaptor.binding
depr.func.adaptor.typedefs
depr.impldec
depr.iso646.h.syn
depr.istrstream
depr.istrstream.cons
depr.istrstream.general
depr.istrstream.members
depr.iterator.basic
depr.iterator.primitives
depr.local
depr.locale.category
depr.locale.stdcvt
depr.locale.stdcvt.general
depr.locale.stdcvt.req
depr.mem.poly.allocator.mem
depr.meta.types
depr.move.iter.elem
depr.negators
depr.ostrstream
depr.ostrstream.cons
depr.ostrstream.general
depr.ostrstream.members
depr.relops
depr.res.on.required
depr.static.constexpr
depr.static_constexpr
depr.stdalign.h.syn
depr.stdbool.h.syn
depr.storage.iterator
depr.str.strstreams
depr.string.capacity
depr.strstream
depr.strstream.cons
depr.strstream.dest
depr.strstream.general
depr.strstream.oper
depr.strstream.syn
depr.strstreambuf
depr.strstreambuf.cons
depr.strstreambuf.general
depr.strstreambuf.members
depr.strstreambuf.virtuals
depr.temporary.buffer
depr.tgmath.h.syn
depr.tuple
depr.uncaught
depr.util.smartptr.shared.atomic
depr.util.smartptr.shared.obs
depr.variant
depr.volatile.type
depr.weak.result_type
deque
deque.capacity
deque.cons
deque.erasure
deque.modifiers
deque.overview
deque.special
deque.syn
derivation
derived.classes
description
diagnostics
diagnostics.general
diff
diff.basic
diff.char16
diff.class
diff.conv
diff.cpp
diff.cpp03
diff.cpp03.algorithms
diff.cpp03.class
diff.cpp03.containers
diff.cpp03.conv
diff.cpp03.dcl.dcl
diff.cpp03.dcl.decl
diff.cpp03.diagnostics
diff.cpp03.expr
diff.cpp03.input.output
diff.cpp03.language.support
diff.cpp03.lex
diff.cpp03.library
diff.cpp03.numerics
diff.cpp03.special
diff.cpp03.strings
diff.cpp03.temp
diff.cpp03.utilities
diff.cpp11
diff.cpp11.basic
diff.cpp11.dcl.dcl
diff.cpp11.dcl.decl
diff.cpp11.expr
diff.cpp11.input.output
diff.cpp11.lex
diff.cpp11.library
diff.cpp14
diff.cpp14.class
diff.cpp14.containers
diff.cpp14.dcl.dcl
diff.cpp14.decl
diff.cpp14.depr
diff.cpp14.except
diff.cpp14.expr
diff.cpp14.lex
diff.cpp14.library
diff.cpp14.special
diff.cpp14.string
diff.cpp14.temp
diff.cpp14.utilities
diff.cpp17
diff.cpp17.alg.reqs
diff.cpp17.basic
diff.cpp17.class
diff.cpp17.containers
diff.cpp17.dcl.dcl
diff.cpp17.depr
diff.cpp17.except
diff.cpp17.expr
diff.cpp17.input.output
diff.cpp17.iterators
diff.cpp17.lex
diff.cpp17.library
diff.cpp17.over
diff.cpp17.temp
diff.dcl
diff.decl
diff.expr
diff.header.assert.h
diff.header.iso646.h
diff.header.stdalign.h
diff.header.stdbool.h
diff.iso
diff.lex
diff.library
diff.malloc
diff.mods.to.behavior
diff.mods.to.declarations
diff.mods.to.definitions
diff.mods.to.headers
diff.null
diff.offsetof
diff.special
diff.stat
diff.wchar.t
domain.error
enum
enum.udecl
enumerated.types
equal.range
errno
error.reporting
except
except.ctor
except.handle
except.nested
except.pre
except.spec
except.special
except.terminate
except.throw
except.uncaught
exception
exception.syn
exception.terminate
exclusive.scan
execpol
execpol.general
execpol.objects
execpol.par
execpol.parunseq
execpol.seq
execpol.type
execpol.unseq
execution.syn
expos.only.func
expos.only.types
expr
expr.add
expr.alignof
expr.arith.conv
expr.ass
expr.await
expr.bit.and
expr.call
expr.cast
expr.comma
expr.compound
expr.cond
expr.const
expr.const.cast
expr.context
expr.delete
expr.dynamic.cast
expr.eq
expr.log.and
expr.log.or
expr.mptr.oper
expr.mul
expr.new
expr.or
expr.post
expr.post.incr
expr.pre
expr.pre.incr
expr.prim
expr.prim.fold
expr.prim.id
expr.prim.id.dtor
expr.prim.id.qual
expr.prim.id.unqual
expr.prim.lambda
expr.prim.lambda.capture
expr.prim.lambda.closure
expr.prim.literal
expr.prim.paren
expr.prim.req
expr.prim.req.compound
expr.prim.req.nested
expr.prim.req.simple
expr.prim.req.type
expr.prim.this
expr.prop
expr.pseudo
expr.ref
expr.reinterpret.cast
expr.rel
expr.shift
expr.sizeof
expr.spaceship
expr.static.cast
expr.sub
expr.throw
expr.type
expr.type.conv
expr.typeid
expr.unary
expr.unary.noexcept
expr.unary.op
expr.xor
expr.yield
ext.manip
extern.names
extern.types
facet.ctype.char.dtor
facet.ctype.char.members
facet.ctype.char.statics
facet.ctype.char.virtuals
facet.ctype.special
facet.num.get.members
facet.num.get.virtuals
facet.num.put.members
facet.num.put.virtuals
facet.numpunct
facet.numpunct.members
facet.numpunct.virtuals
facets.examples
file.streams
filebuf
filebuf.assign
filebuf.cons
filebuf.members
filebuf.virtuals
filesystems
floatfield.manip
fmtflags.manip
fmtflags.state
format
format.arg
format.arg.store
format.args
format.arguments
format.context
format.err.report
format.error
format.formatter
format.formatter.spec
format.functions
format.parse.ctx
format.string
format.string.general
format.string.std
format.syn
formatter.requirements
forward
forward.iterators
forward.list.erasure
forward.list.syn
forward_list.syn
forwardlist
forwardlist.access
forwardlist.cons
forwardlist.iter
forwardlist.modifiers
forwardlist.ops
forwardlist.overview
forwardlist.spec
fp.style
fpos
fpos.members
fpos.operations
front.insert.iter.cons
front.insert.iter.op*
front.insert.iter.op++
front.insert.iter.op=
front.insert.iter.ops
front.insert.iterator
front.inserter
fs.class.directory.entry
fs.class.directory.iterator
fs.class.directory_entry
fs.class.directory_iterator
fs.class.file.status
fs.class.file_status
fs.class.filesystem.error
fs.class.filesystem_error
fs.class.path
fs.class.rec.dir.itr
fs.conform.9945
fs.conform.os
fs.conformance
fs.definitions
fs.dir.entry.cons
fs.dir.entry.mods
fs.dir.entry.obs
fs.dir.itr.members