-
Notifications
You must be signed in to change notification settings - Fork 0
/
classSLHAea_1_1Block.html
2841 lines (2552 loc) · 175 KB
/
classSLHAea_1_1Block.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
<meta name="generator" content="Doxygen 1.9.4"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>GM2Calc: SLHAea::Block Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr id="projectrow">
<td id="projectalign">
<div id="projectname">GM2Calc<span id="projectnumber"> 2.2.0</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.9.4 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
var searchBox = new SearchBox("searchBox", "search",'Search','.html');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */
</script>
<div id="main-nav"></div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespaceSLHAea.html">SLHAea</a></li><li class="navelem"><a class="el" href="classSLHAea_1_1Block.html">Block</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> |
<a href="#pub-types">Public Types</a> |
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-static-methods">Static Public Member Functions</a> |
<a href="classSLHAea_1_1Block-members.html">List of all members</a> </div>
<div class="headertitle"><div class="title">SLHAea::Block Class Reference</div></div>
</div><!--header-->
<div class="contents">
<p>Container of Lines that resembles a block in a SLHA structure.
<a href="classSLHAea_1_1Block.html#details">More...</a></p>
<p><code>#include <<a class="el" href="slhaea_8h_source.html">slhaea.h</a>></code></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="nested-classes" name="nested-classes"></a>
Classes</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structSLHAea_1_1Block_1_1key__matches.html">key_matches</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Unary predicate that checks if a provided key matches a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a>. <a href="structSLHAea_1_1Block_1_1key__matches.html#details">More...</a><br /></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="pub-types" name="pub-types"></a>
Public Types</h2></td></tr>
<tr class="memitem:a8ac72904a49b56edb620be8870209b9b"><td class="memItemLeft" align="right" valign="top">typedef std::vector< std::string > </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a8ac72904a49b56edb620be8870209b9b">key_type</a></td></tr>
<tr class="separator:a8ac72904a49b56edb620be8870209b9b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a76c7f1cc8a882ee0f6bb22c0c0d2adfa"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classSLHAea_1_1Line.html">Line</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a76c7f1cc8a882ee0f6bb22c0c0d2adfa">value_type</a></td></tr>
<tr class="separator:a76c7f1cc8a882ee0f6bb22c0c0d2adfa"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab7e77ca83f7fd2746a4ae2e12fe61d73"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classSLHAea_1_1Line.html">Line</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#ab7e77ca83f7fd2746a4ae2e12fe61d73">reference</a></td></tr>
<tr class="separator:ab7e77ca83f7fd2746a4ae2e12fe61d73"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abd9917001e89b474fa7f92cbc0f73104"><td class="memItemLeft" align="right" valign="top">typedef const <a class="el" href="classSLHAea_1_1Line.html">Line</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#abd9917001e89b474fa7f92cbc0f73104">const_reference</a></td></tr>
<tr class="separator:abd9917001e89b474fa7f92cbc0f73104"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a97db700b9ee634cebc0f564b3ae29574"><td class="memItemLeft" align="right" valign="top">typedef impl_type::iterator </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a97db700b9ee634cebc0f564b3ae29574">iterator</a></td></tr>
<tr class="separator:a97db700b9ee634cebc0f564b3ae29574"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9505b8402c77b7eba395e9844ad357e2"><td class="memItemLeft" align="right" valign="top">typedef impl_type::const_iterator </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a9505b8402c77b7eba395e9844ad357e2">const_iterator</a></td></tr>
<tr class="separator:a9505b8402c77b7eba395e9844ad357e2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acad3268fcb770e3b5c6aa7ce92d329b2"><td class="memItemLeft" align="right" valign="top">typedef impl_type::reverse_iterator </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#acad3268fcb770e3b5c6aa7ce92d329b2">reverse_iterator</a></td></tr>
<tr class="separator:acad3268fcb770e3b5c6aa7ce92d329b2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9e2ee5a534ca5ab8f2b99b5ce038794d"><td class="memItemLeft" align="right" valign="top">typedef impl_type::const_reverse_iterator </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a9e2ee5a534ca5ab8f2b99b5ce038794d">const_reverse_iterator</a></td></tr>
<tr class="separator:a9e2ee5a534ca5ab8f2b99b5ce038794d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a28c513e273e438699f37080561e40d37"><td class="memItemLeft" align="right" valign="top">typedef impl_type::pointer </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a28c513e273e438699f37080561e40d37">pointer</a></td></tr>
<tr class="separator:a28c513e273e438699f37080561e40d37"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac2f4cd2a1d19ab86212a655235919e67"><td class="memItemLeft" align="right" valign="top">typedef impl_type::const_pointer </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#ac2f4cd2a1d19ab86212a655235919e67">const_pointer</a></td></tr>
<tr class="separator:ac2f4cd2a1d19ab86212a655235919e67"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac67c657c8ae99906485a4f096c645043"><td class="memItemLeft" align="right" valign="top">typedef impl_type::difference_type </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#ac67c657c8ae99906485a4f096c645043">difference_type</a></td></tr>
<tr class="separator:ac67c657c8ae99906485a4f096c645043"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8e5fc334997fe5c8dc590f8ed63e12d0"><td class="memItemLeft" align="right" valign="top">typedef impl_type::size_type </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a8e5fc334997fe5c8dc590f8ed63e12d0">size_type</a></td></tr>
<tr class="separator:a8e5fc334997fe5c8dc590f8ed63e12d0"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="pub-methods" name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a7814b7669762164fc66c4d690b471368"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a7814b7669762164fc66c4d690b471368">Block</a> (const std::string &<a class="el" href="classSLHAea_1_1Block.html#ac52174e5e23ecde230ca27c6339ee1c9">name</a>="")</td></tr>
<tr class="memdesc:a7814b7669762164fc66c4d690b471368"><td class="mdescLeft"> </td><td class="mdescRight">Constructs an empty Block. <a href="classSLHAea_1_1Block.html#a7814b7669762164fc66c4d690b471368">More...</a><br /></td></tr>
<tr class="separator:a7814b7669762164fc66c4d690b471368"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae4a9295987873bc2abd8dd82e8d63afa"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#ae4a9295987873bc2abd8dd82e8d63afa">Block</a> (std::istream &is)</td></tr>
<tr class="memdesc:ae4a9295987873bc2abd8dd82e8d63afa"><td class="mdescLeft"> </td><td class="mdescRight">Constructs a Block with content from an input stream. <a href="classSLHAea_1_1Block.html#ae4a9295987873bc2abd8dd82e8d63afa">More...</a><br /></td></tr>
<tr class="separator:ae4a9295987873bc2abd8dd82e8d63afa"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac52174e5e23ecde230ca27c6339ee1c9"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#ac52174e5e23ecde230ca27c6339ee1c9">name</a> (const std::string &newName)</td></tr>
<tr class="memdesc:ac52174e5e23ecde230ca27c6339ee1c9"><td class="mdescLeft"> </td><td class="mdescRight">Sets the name of the Block. <a href="classSLHAea_1_1Block.html#ac52174e5e23ecde230ca27c6339ee1c9">More...</a><br /></td></tr>
<tr class="separator:ac52174e5e23ecde230ca27c6339ee1c9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af290563627a99033b255bce244d6801d"><td class="memItemLeft" align="right" valign="top">const std::string & </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#af290563627a99033b255bce244d6801d">name</a> () const</td></tr>
<tr class="memdesc:af290563627a99033b255bce244d6801d"><td class="mdescLeft"> </td><td class="mdescRight">Returns the name of the Block. <a href="classSLHAea_1_1Block.html#af290563627a99033b255bce244d6801d">More...</a><br /></td></tr>
<tr class="separator:af290563627a99033b255bce244d6801d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a40f9366a5925e7ba6778b0f183344b66"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a40f9366a5925e7ba6778b0f183344b66">rename</a> (const std::string &newName)</td></tr>
<tr class="memdesc:a40f9366a5925e7ba6778b0f183344b66"><td class="mdescLeft"> </td><td class="mdescRight">Changes the name and definition of the Block. <a href="classSLHAea_1_1Block.html#a40f9366a5925e7ba6778b0f183344b66">More...</a><br /></td></tr>
<tr class="separator:a40f9366a5925e7ba6778b0f183344b66"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adc034e353a072bc1ef65bcf0ecbbbca9"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html">Block</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#adc034e353a072bc1ef65bcf0ecbbbca9">read</a> (std::istream &is)</td></tr>
<tr class="memdesc:adc034e353a072bc1ef65bcf0ecbbbca9"><td class="mdescLeft"> </td><td class="mdescRight">Assigns content from an input stream to the Block. <a href="classSLHAea_1_1Block.html#adc034e353a072bc1ef65bcf0ecbbbca9">More...</a><br /></td></tr>
<tr class="separator:adc034e353a072bc1ef65bcf0ecbbbca9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abf569ad3873bbc9fb788843e8ea5c711"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html">Block</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#abf569ad3873bbc9fb788843e8ea5c711">str</a> (const std::string &block)</td></tr>
<tr class="memdesc:abf569ad3873bbc9fb788843e8ea5c711"><td class="mdescLeft"> </td><td class="mdescRight">Assigns content from a string to the Block. <a href="classSLHAea_1_1Block.html#abf569ad3873bbc9fb788843e8ea5c711">More...</a><br /></td></tr>
<tr class="separator:abf569ad3873bbc9fb788843e8ea5c711"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad5566169fe301d6bfe164b40287a2a4b"><td class="memItemLeft" align="right" valign="top">std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#ad5566169fe301d6bfe164b40287a2a4b">str</a> () const</td></tr>
<tr class="memdesc:ad5566169fe301d6bfe164b40287a2a4b"><td class="mdescLeft"> </td><td class="mdescRight">Returns a string representation of the Block. <a href="classSLHAea_1_1Block.html#ad5566169fe301d6bfe164b40287a2a4b">More...</a><br /></td></tr>
<tr class="separator:ad5566169fe301d6bfe164b40287a2a4b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afad36644a105473d31ea685fb824d2d2"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#ab7e77ca83f7fd2746a4ae2e12fe61d73">reference</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#afad36644a105473d31ea685fb824d2d2">operator[]</a> (const <a class="el" href="classSLHAea_1_1Block.html#a8ac72904a49b56edb620be8870209b9b">key_type</a> &key)</td></tr>
<tr class="memdesc:afad36644a105473d31ea685fb824d2d2"><td class="mdescLeft"> </td><td class="mdescRight">Locates a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block. <a href="classSLHAea_1_1Block.html#afad36644a105473d31ea685fb824d2d2">More...</a><br /></td></tr>
<tr class="separator:afad36644a105473d31ea685fb824d2d2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab069ad9a58cb406988b90d1a36ccb36e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#ab7e77ca83f7fd2746a4ae2e12fe61d73">reference</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#ab069ad9a58cb406988b90d1a36ccb36e">operator[]</a> (const std::vector< int > &key)</td></tr>
<tr class="memdesc:ab069ad9a58cb406988b90d1a36ccb36e"><td class="mdescLeft"> </td><td class="mdescRight">Locates a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block. <a href="classSLHAea_1_1Block.html#ab069ad9a58cb406988b90d1a36ccb36e">More...</a><br /></td></tr>
<tr class="separator:ab069ad9a58cb406988b90d1a36ccb36e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adcf0be22a2ce64c0b3408893a1fe019d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#ab7e77ca83f7fd2746a4ae2e12fe61d73">reference</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#adcf0be22a2ce64c0b3408893a1fe019d">operator[]</a> (const std::string &key)</td></tr>
<tr class="memdesc:adcf0be22a2ce64c0b3408893a1fe019d"><td class="mdescLeft"> </td><td class="mdescRight">Locates a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block. <a href="classSLHAea_1_1Block.html#adcf0be22a2ce64c0b3408893a1fe019d">More...</a><br /></td></tr>
<tr class="separator:adcf0be22a2ce64c0b3408893a1fe019d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8a485bd2fd0880f4db7e2d51ec4e3f24"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#ab7e77ca83f7fd2746a4ae2e12fe61d73">reference</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a8a485bd2fd0880f4db7e2d51ec4e3f24">operator[]</a> (int key)</td></tr>
<tr class="memdesc:a8a485bd2fd0880f4db7e2d51ec4e3f24"><td class="mdescLeft"> </td><td class="mdescRight">Locates a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block. <a href="classSLHAea_1_1Block.html#a8a485bd2fd0880f4db7e2d51ec4e3f24">More...</a><br /></td></tr>
<tr class="separator:a8a485bd2fd0880f4db7e2d51ec4e3f24"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae16b1a0264e73b51a974f09ef254021b"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#ab7e77ca83f7fd2746a4ae2e12fe61d73">reference</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#ae16b1a0264e73b51a974f09ef254021b">at</a> (const <a class="el" href="classSLHAea_1_1Block.html#a8ac72904a49b56edb620be8870209b9b">key_type</a> &key)</td></tr>
<tr class="memdesc:ae16b1a0264e73b51a974f09ef254021b"><td class="mdescLeft"> </td><td class="mdescRight">Locates a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block. <a href="classSLHAea_1_1Block.html#ae16b1a0264e73b51a974f09ef254021b">More...</a><br /></td></tr>
<tr class="separator:ae16b1a0264e73b51a974f09ef254021b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2ba09830f36ae450e18da7e2eeb04bee"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#abd9917001e89b474fa7f92cbc0f73104">const_reference</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a2ba09830f36ae450e18da7e2eeb04bee">at</a> (const <a class="el" href="classSLHAea_1_1Block.html#a8ac72904a49b56edb620be8870209b9b">key_type</a> &key) const</td></tr>
<tr class="memdesc:a2ba09830f36ae450e18da7e2eeb04bee"><td class="mdescLeft"> </td><td class="mdescRight">Locates a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block. <a href="classSLHAea_1_1Block.html#a2ba09830f36ae450e18da7e2eeb04bee">More...</a><br /></td></tr>
<tr class="separator:a2ba09830f36ae450e18da7e2eeb04bee"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a243fcbb8eb6d8ea2edfe31cbbd8b4a72"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#ab7e77ca83f7fd2746a4ae2e12fe61d73">reference</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a243fcbb8eb6d8ea2edfe31cbbd8b4a72">at</a> (const std::vector< int > &key)</td></tr>
<tr class="memdesc:a243fcbb8eb6d8ea2edfe31cbbd8b4a72"><td class="mdescLeft"> </td><td class="mdescRight">Locates a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block. <a href="classSLHAea_1_1Block.html#a243fcbb8eb6d8ea2edfe31cbbd8b4a72">More...</a><br /></td></tr>
<tr class="separator:a243fcbb8eb6d8ea2edfe31cbbd8b4a72"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5c554e985258754a622b312933e40a5c"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#abd9917001e89b474fa7f92cbc0f73104">const_reference</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a5c554e985258754a622b312933e40a5c">at</a> (const std::vector< int > &key) const</td></tr>
<tr class="memdesc:a5c554e985258754a622b312933e40a5c"><td class="mdescLeft"> </td><td class="mdescRight">Locates a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block. <a href="classSLHAea_1_1Block.html#a5c554e985258754a622b312933e40a5c">More...</a><br /></td></tr>
<tr class="separator:a5c554e985258754a622b312933e40a5c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa8cd0b332e993a74c185790fdc3531e6"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#ab7e77ca83f7fd2746a4ae2e12fe61d73">reference</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#aa8cd0b332e993a74c185790fdc3531e6">at</a> (const std::string &s0, const std::string &s1="", const std::string &s2="", const std::string &s3="", const std::string &s4="")</td></tr>
<tr class="memdesc:aa8cd0b332e993a74c185790fdc3531e6"><td class="mdescLeft"> </td><td class="mdescRight">Locates a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block. <a href="classSLHAea_1_1Block.html#aa8cd0b332e993a74c185790fdc3531e6">More...</a><br /></td></tr>
<tr class="separator:aa8cd0b332e993a74c185790fdc3531e6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af29e60ded65a70ea8b6f951c04b20dd6"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#abd9917001e89b474fa7f92cbc0f73104">const_reference</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#af29e60ded65a70ea8b6f951c04b20dd6">at</a> (const std::string &s0, const std::string &s1="", const std::string &s2="", const std::string &s3="", const std::string &s4="") const</td></tr>
<tr class="memdesc:af29e60ded65a70ea8b6f951c04b20dd6"><td class="mdescLeft"> </td><td class="mdescRight">Locates a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block. <a href="classSLHAea_1_1Block.html#af29e60ded65a70ea8b6f951c04b20dd6">More...</a><br /></td></tr>
<tr class="separator:af29e60ded65a70ea8b6f951c04b20dd6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a21204fb6fd988d226a5032c0bb77e43a"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#ab7e77ca83f7fd2746a4ae2e12fe61d73">reference</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a21204fb6fd988d226a5032c0bb77e43a">at</a> (int i0, int i1=no_index_, int i2=no_index_, int i3=no_index_, int i4=no_index_)</td></tr>
<tr class="memdesc:a21204fb6fd988d226a5032c0bb77e43a"><td class="mdescLeft"> </td><td class="mdescRight">Locates a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block. <a href="classSLHAea_1_1Block.html#a21204fb6fd988d226a5032c0bb77e43a">More...</a><br /></td></tr>
<tr class="separator:a21204fb6fd988d226a5032c0bb77e43a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6c51b515f17f0757b42806274fd49711"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#abd9917001e89b474fa7f92cbc0f73104">const_reference</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a6c51b515f17f0757b42806274fd49711">at</a> (int i0, int i1=no_index_, int i2=no_index_, int i3=no_index_, int i4=no_index_) const</td></tr>
<tr class="memdesc:a6c51b515f17f0757b42806274fd49711"><td class="mdescLeft"> </td><td class="mdescRight">Locates a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block. <a href="classSLHAea_1_1Block.html#a6c51b515f17f0757b42806274fd49711">More...</a><br /></td></tr>
<tr class="separator:a6c51b515f17f0757b42806274fd49711"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a372b66c4ecdee60097ca7b1cb6a2f637"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#ab7e77ca83f7fd2746a4ae2e12fe61d73">reference</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a372b66c4ecdee60097ca7b1cb6a2f637">front</a> ()</td></tr>
<tr class="memdesc:a372b66c4ecdee60097ca7b1cb6a2f637"><td class="mdescLeft"> </td><td class="mdescRight">Returns a read/write reference to the first element of the Block. <a href="classSLHAea_1_1Block.html#a372b66c4ecdee60097ca7b1cb6a2f637">More...</a><br /></td></tr>
<tr class="separator:a372b66c4ecdee60097ca7b1cb6a2f637"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a521a8e67ae3c77de60298afeca2530bc"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#abd9917001e89b474fa7f92cbc0f73104">const_reference</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a521a8e67ae3c77de60298afeca2530bc">front</a> () const</td></tr>
<tr class="memdesc:a521a8e67ae3c77de60298afeca2530bc"><td class="mdescLeft"> </td><td class="mdescRight">Returns a read-only (constant) reference to the first element of the Block. <a href="classSLHAea_1_1Block.html#a521a8e67ae3c77de60298afeca2530bc">More...</a><br /></td></tr>
<tr class="separator:a521a8e67ae3c77de60298afeca2530bc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6bfad77e09fb5a6c423334e80aaa6703"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#ab7e77ca83f7fd2746a4ae2e12fe61d73">reference</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a6bfad77e09fb5a6c423334e80aaa6703">back</a> ()</td></tr>
<tr class="memdesc:a6bfad77e09fb5a6c423334e80aaa6703"><td class="mdescLeft"> </td><td class="mdescRight">Returns a read/write reference to the last element of the Block. <a href="classSLHAea_1_1Block.html#a6bfad77e09fb5a6c423334e80aaa6703">More...</a><br /></td></tr>
<tr class="separator:a6bfad77e09fb5a6c423334e80aaa6703"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac15796f2c5852dfa36dc205d6000f0f9"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#abd9917001e89b474fa7f92cbc0f73104">const_reference</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#ac15796f2c5852dfa36dc205d6000f0f9">back</a> () const</td></tr>
<tr class="memdesc:ac15796f2c5852dfa36dc205d6000f0f9"><td class="mdescLeft"> </td><td class="mdescRight">Returns a read-only (constant) reference to the last element of the Block. <a href="classSLHAea_1_1Block.html#ac15796f2c5852dfa36dc205d6000f0f9">More...</a><br /></td></tr>
<tr class="separator:ac15796f2c5852dfa36dc205d6000f0f9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a40e408ed7f24e34d8b85a6bc613df3ba"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a97db700b9ee634cebc0f564b3ae29574">iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a40e408ed7f24e34d8b85a6bc613df3ba">begin</a> ()</td></tr>
<tr class="memdesc:a40e408ed7f24e34d8b85a6bc613df3ba"><td class="mdescLeft"> </td><td class="mdescRight">Returns a read/write iterator that points to the first element in the Block. <a href="classSLHAea_1_1Block.html#a40e408ed7f24e34d8b85a6bc613df3ba">More...</a><br /></td></tr>
<tr class="separator:a40e408ed7f24e34d8b85a6bc613df3ba"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a48001930f4ed4db64b4a20a258fe9c0d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a9505b8402c77b7eba395e9844ad357e2">const_iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a48001930f4ed4db64b4a20a258fe9c0d">begin</a> () const</td></tr>
<tr class="memdesc:a48001930f4ed4db64b4a20a258fe9c0d"><td class="mdescLeft"> </td><td class="mdescRight">Returns a read-only (constant) iterator that points to the first element in the Block. <a href="classSLHAea_1_1Block.html#a48001930f4ed4db64b4a20a258fe9c0d">More...</a><br /></td></tr>
<tr class="separator:a48001930f4ed4db64b4a20a258fe9c0d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab2e2a2cf971b5011d373bce7091832fd"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a9505b8402c77b7eba395e9844ad357e2">const_iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#ab2e2a2cf971b5011d373bce7091832fd">cbegin</a> () const</td></tr>
<tr class="memdesc:ab2e2a2cf971b5011d373bce7091832fd"><td class="mdescLeft"> </td><td class="mdescRight">Returns a read-only (constant) iterator that points to the first element in the Block. <a href="classSLHAea_1_1Block.html#ab2e2a2cf971b5011d373bce7091832fd">More...</a><br /></td></tr>
<tr class="separator:ab2e2a2cf971b5011d373bce7091832fd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a842b3d9af1ad1be283e64c59ce9a67d0"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a97db700b9ee634cebc0f564b3ae29574">iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a842b3d9af1ad1be283e64c59ce9a67d0">end</a> ()</td></tr>
<tr class="memdesc:a842b3d9af1ad1be283e64c59ce9a67d0"><td class="mdescLeft"> </td><td class="mdescRight">Returns a read/write iterator that points one past the last element in the Block. <a href="classSLHAea_1_1Block.html#a842b3d9af1ad1be283e64c59ce9a67d0">More...</a><br /></td></tr>
<tr class="separator:a842b3d9af1ad1be283e64c59ce9a67d0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa375d2b4ce16ba722b377591e5656d0f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a9505b8402c77b7eba395e9844ad357e2">const_iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#aa375d2b4ce16ba722b377591e5656d0f">end</a> () const</td></tr>
<tr class="memdesc:aa375d2b4ce16ba722b377591e5656d0f"><td class="mdescLeft"> </td><td class="mdescRight">Returns a read-only (constant) iterator that points one past the last element in the Block. <a href="classSLHAea_1_1Block.html#aa375d2b4ce16ba722b377591e5656d0f">More...</a><br /></td></tr>
<tr class="separator:aa375d2b4ce16ba722b377591e5656d0f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa2bca6a45a90f556cb558a32ef8377b5"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a9505b8402c77b7eba395e9844ad357e2">const_iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#aa2bca6a45a90f556cb558a32ef8377b5">cend</a> () const</td></tr>
<tr class="memdesc:aa2bca6a45a90f556cb558a32ef8377b5"><td class="mdescLeft"> </td><td class="mdescRight">Returns a read-only (constant) iterator that points one past the last element in the Block. <a href="classSLHAea_1_1Block.html#aa2bca6a45a90f556cb558a32ef8377b5">More...</a><br /></td></tr>
<tr class="separator:aa2bca6a45a90f556cb558a32ef8377b5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad24a7f2e25fcad029040dcd2407cd23e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#acad3268fcb770e3b5c6aa7ce92d329b2">reverse_iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#ad24a7f2e25fcad029040dcd2407cd23e">rbegin</a> ()</td></tr>
<tr class="memdesc:ad24a7f2e25fcad029040dcd2407cd23e"><td class="mdescLeft"> </td><td class="mdescRight">Returns a read/write reverse iterator that points to the last element in the Block. <a href="classSLHAea_1_1Block.html#ad24a7f2e25fcad029040dcd2407cd23e">More...</a><br /></td></tr>
<tr class="separator:ad24a7f2e25fcad029040dcd2407cd23e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aceab38d750b5f6489d4fd2a3a55551a9"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a9e2ee5a534ca5ab8f2b99b5ce038794d">const_reverse_iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#aceab38d750b5f6489d4fd2a3a55551a9">rbegin</a> () const</td></tr>
<tr class="memdesc:aceab38d750b5f6489d4fd2a3a55551a9"><td class="mdescLeft"> </td><td class="mdescRight">Returns a read-only (constant) reverse iterator that points to the last element in the Block. <a href="classSLHAea_1_1Block.html#aceab38d750b5f6489d4fd2a3a55551a9">More...</a><br /></td></tr>
<tr class="separator:aceab38d750b5f6489d4fd2a3a55551a9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aeb9ba6654d56e8a3d13905045febc538"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a9e2ee5a534ca5ab8f2b99b5ce038794d">const_reverse_iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#aeb9ba6654d56e8a3d13905045febc538">crbegin</a> () const</td></tr>
<tr class="memdesc:aeb9ba6654d56e8a3d13905045febc538"><td class="mdescLeft"> </td><td class="mdescRight">Returns a read-only (constant) reverse iterator that points to the last element in the Block. <a href="classSLHAea_1_1Block.html#aeb9ba6654d56e8a3d13905045febc538">More...</a><br /></td></tr>
<tr class="separator:aeb9ba6654d56e8a3d13905045febc538"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a584bf757fc5de3f9b67e1bdc23d6cfbf"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#acad3268fcb770e3b5c6aa7ce92d329b2">reverse_iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a584bf757fc5de3f9b67e1bdc23d6cfbf">rend</a> ()</td></tr>
<tr class="memdesc:a584bf757fc5de3f9b67e1bdc23d6cfbf"><td class="mdescLeft"> </td><td class="mdescRight">Returns a read/write reverse iterator that points to one before the first element in the Block. <a href="classSLHAea_1_1Block.html#a584bf757fc5de3f9b67e1bdc23d6cfbf">More...</a><br /></td></tr>
<tr class="separator:a584bf757fc5de3f9b67e1bdc23d6cfbf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a82586b20e7831f886e5545eed8cac3e9"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a9e2ee5a534ca5ab8f2b99b5ce038794d">const_reverse_iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a82586b20e7831f886e5545eed8cac3e9">rend</a> () const</td></tr>
<tr class="memdesc:a82586b20e7831f886e5545eed8cac3e9"><td class="mdescLeft"> </td><td class="mdescRight">Returns a read-only (constant) reverse iterator that points to one before the first element in the Block. <a href="classSLHAea_1_1Block.html#a82586b20e7831f886e5545eed8cac3e9">More...</a><br /></td></tr>
<tr class="separator:a82586b20e7831f886e5545eed8cac3e9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a45f344367ba5608d6f4d7a78e4b6a474"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a9e2ee5a534ca5ab8f2b99b5ce038794d">const_reverse_iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a45f344367ba5608d6f4d7a78e4b6a474">crend</a> () const</td></tr>
<tr class="memdesc:a45f344367ba5608d6f4d7a78e4b6a474"><td class="mdescLeft"> </td><td class="mdescRight">Returns a read-only (constant) reverse iterator that points to one before the first element in the Block. <a href="classSLHAea_1_1Block.html#a45f344367ba5608d6f4d7a78e4b6a474">More...</a><br /></td></tr>
<tr class="separator:a45f344367ba5608d6f4d7a78e4b6a474"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1b27557d719a5f018552bf98db71bb33"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a97db700b9ee634cebc0f564b3ae29574">iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a1b27557d719a5f018552bf98db71bb33">find</a> (const <a class="el" href="classSLHAea_1_1Block.html#a8ac72904a49b56edb620be8870209b9b">key_type</a> &key)</td></tr>
<tr class="memdesc:a1b27557d719a5f018552bf98db71bb33"><td class="mdescLeft"> </td><td class="mdescRight">Tries to locate a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block. <a href="classSLHAea_1_1Block.html#a1b27557d719a5f018552bf98db71bb33">More...</a><br /></td></tr>
<tr class="separator:a1b27557d719a5f018552bf98db71bb33"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a441bfeb7193e9701813648605ea6cf74"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a9505b8402c77b7eba395e9844ad357e2">const_iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a441bfeb7193e9701813648605ea6cf74">find</a> (const <a class="el" href="classSLHAea_1_1Block.html#a8ac72904a49b56edb620be8870209b9b">key_type</a> &key) const</td></tr>
<tr class="memdesc:a441bfeb7193e9701813648605ea6cf74"><td class="mdescLeft"> </td><td class="mdescRight">Tries to locate a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block. <a href="classSLHAea_1_1Block.html#a441bfeb7193e9701813648605ea6cf74">More...</a><br /></td></tr>
<tr class="separator:a441bfeb7193e9701813648605ea6cf74"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a754020941e90741cdda78737b7f4ab2f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a97db700b9ee634cebc0f564b3ae29574">iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a754020941e90741cdda78737b7f4ab2f">find_block_def</a> ()</td></tr>
<tr class="memdesc:a754020941e90741cdda78737b7f4ab2f"><td class="mdescLeft"> </td><td class="mdescRight">Returns a read/write iterator that points to the first <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block which is a block definition. <a href="classSLHAea_1_1Block.html#a754020941e90741cdda78737b7f4ab2f">More...</a><br /></td></tr>
<tr class="separator:a754020941e90741cdda78737b7f4ab2f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4cd01957ad26cff39a262a03c9841bfe"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a9505b8402c77b7eba395e9844ad357e2">const_iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a4cd01957ad26cff39a262a03c9841bfe">find_block_def</a> () const</td></tr>
<tr class="memdesc:a4cd01957ad26cff39a262a03c9841bfe"><td class="mdescLeft"> </td><td class="mdescRight">Returns a read-only (constant) iterator that points to the first <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block which is a block definition. <a href="classSLHAea_1_1Block.html#a4cd01957ad26cff39a262a03c9841bfe">More...</a><br /></td></tr>
<tr class="separator:a4cd01957ad26cff39a262a03c9841bfe"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a79d6e200085f4540d7f8cff90dd762d8"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a8e5fc334997fe5c8dc590f8ed63e12d0">size_type</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a79d6e200085f4540d7f8cff90dd762d8">count</a> (const <a class="el" href="classSLHAea_1_1Block.html#a8ac72904a49b56edb620be8870209b9b">key_type</a> &key) const</td></tr>
<tr class="memdesc:a79d6e200085f4540d7f8cff90dd762d8"><td class="mdescLeft"> </td><td class="mdescRight">Counts all Lines that match a given key. <a href="classSLHAea_1_1Block.html#a79d6e200085f4540d7f8cff90dd762d8">More...</a><br /></td></tr>
<tr class="separator:a79d6e200085f4540d7f8cff90dd762d8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a02aef3cd776c2d09957f7db9a5221c13"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a8e5fc334997fe5c8dc590f8ed63e12d0">size_type</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a02aef3cd776c2d09957f7db9a5221c13">size</a> () const</td></tr>
<tr class="memdesc:a02aef3cd776c2d09957f7db9a5221c13"><td class="mdescLeft"> </td><td class="mdescRight">Returns the number of elements in the Block. <a href="classSLHAea_1_1Block.html#a02aef3cd776c2d09957f7db9a5221c13">More...</a><br /></td></tr>
<tr class="separator:a02aef3cd776c2d09957f7db9a5221c13"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a713e55bb064096066c1f667889672e83"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a8e5fc334997fe5c8dc590f8ed63e12d0">size_type</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a713e55bb064096066c1f667889672e83">data_size</a> () const</td></tr>
<tr class="memdesc:a713e55bb064096066c1f667889672e83"><td class="mdescLeft"> </td><td class="mdescRight">Returns the number of data Lines in the Block. <a href="classSLHAea_1_1Block.html#a713e55bb064096066c1f667889672e83">More...</a><br /></td></tr>
<tr class="separator:a713e55bb064096066c1f667889672e83"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a67c87caa224f3d513356cae363258319"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a8e5fc334997fe5c8dc590f8ed63e12d0">size_type</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a67c87caa224f3d513356cae363258319">max_size</a> () const</td></tr>
<tr class="memdesc:a67c87caa224f3d513356cae363258319"><td class="mdescLeft"> </td><td class="mdescRight">Returns the <a class="el" href="classSLHAea_1_1Block.html#a02aef3cd776c2d09957f7db9a5221c13" title="Returns the number of elements in the Block.">size()</a> of the largest possible Block. <a href="classSLHAea_1_1Block.html#a67c87caa224f3d513356cae363258319">More...</a><br /></td></tr>
<tr class="separator:a67c87caa224f3d513356cae363258319"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae0a5b84222737ee1a14da9aae222bf09"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#ae0a5b84222737ee1a14da9aae222bf09">empty</a> () const</td></tr>
<tr class="memdesc:ae0a5b84222737ee1a14da9aae222bf09"><td class="mdescLeft"> </td><td class="mdescRight">Returns true if the Block is empty. <a href="classSLHAea_1_1Block.html#ae0a5b84222737ee1a14da9aae222bf09">More...</a><br /></td></tr>
<tr class="separator:ae0a5b84222737ee1a14da9aae222bf09"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a040d72de23b0bb58890edbfc9e0844f1"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a040d72de23b0bb58890edbfc9e0844f1">push_back</a> (const <a class="el" href="classSLHAea_1_1Block.html#a76c7f1cc8a882ee0f6bb22c0c0d2adfa">value_type</a> &line)</td></tr>
<tr class="memdesc:a040d72de23b0bb58890edbfc9e0844f1"><td class="mdescLeft"> </td><td class="mdescRight">Adds a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> to the end of the Block. <a href="classSLHAea_1_1Block.html#a040d72de23b0bb58890edbfc9e0844f1">More...</a><br /></td></tr>
<tr class="separator:a040d72de23b0bb58890edbfc9e0844f1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a37f9bbef84dc45dbc14bd1d4be56ce4d"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a37f9bbef84dc45dbc14bd1d4be56ce4d">push_back</a> (const std::string &line)</td></tr>
<tr class="memdesc:a37f9bbef84dc45dbc14bd1d4be56ce4d"><td class="mdescLeft"> </td><td class="mdescRight">Adds a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> to the end of the Block. <a href="classSLHAea_1_1Block.html#a37f9bbef84dc45dbc14bd1d4be56ce4d">More...</a><br /></td></tr>
<tr class="separator:a37f9bbef84dc45dbc14bd1d4be56ce4d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa9a7d63912b130923bceb1b58f4acfa5"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#aa9a7d63912b130923bceb1b58f4acfa5">pop_back</a> ()</td></tr>
<tr class="memdesc:aa9a7d63912b130923bceb1b58f4acfa5"><td class="mdescLeft"> </td><td class="mdescRight">Removes the last element. <a href="classSLHAea_1_1Block.html#aa9a7d63912b130923bceb1b58f4acfa5">More...</a><br /></td></tr>
<tr class="separator:aa9a7d63912b130923bceb1b58f4acfa5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7b452e876f35dde416510669c3c3bb25"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a97db700b9ee634cebc0f564b3ae29574">iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a7b452e876f35dde416510669c3c3bb25">insert</a> (<a class="el" href="classSLHAea_1_1Block.html#a97db700b9ee634cebc0f564b3ae29574">iterator</a> position, const <a class="el" href="classSLHAea_1_1Block.html#a76c7f1cc8a882ee0f6bb22c0c0d2adfa">value_type</a> &line)</td></tr>
<tr class="memdesc:a7b452e876f35dde416510669c3c3bb25"><td class="mdescLeft"> </td><td class="mdescRight">Inserts a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> before given <code>position</code>. <a href="classSLHAea_1_1Block.html#a7b452e876f35dde416510669c3c3bb25">More...</a><br /></td></tr>
<tr class="separator:a7b452e876f35dde416510669c3c3bb25"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0a267e922d35c9df85127683fdd8aa1a"><td class="memTemplParams" colspan="2">template<class InputIterator > </td></tr>
<tr class="memitem:a0a267e922d35c9df85127683fdd8aa1a"><td class="memTemplItemLeft" align="right" valign="top">void </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a0a267e922d35c9df85127683fdd8aa1a">insert</a> (<a class="el" href="classSLHAea_1_1Block.html#a97db700b9ee634cebc0f564b3ae29574">iterator</a> position, InputIterator first, InputIterator last)</td></tr>
<tr class="memdesc:a0a267e922d35c9df85127683fdd8aa1a"><td class="mdescLeft"> </td><td class="mdescRight">Inserts a range into the Block. <a href="classSLHAea_1_1Block.html#a0a267e922d35c9df85127683fdd8aa1a">More...</a><br /></td></tr>
<tr class="separator:a0a267e922d35c9df85127683fdd8aa1a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5d4f1180aa89fb1a78d96e0fc4c72eeb"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a97db700b9ee634cebc0f564b3ae29574">iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a5d4f1180aa89fb1a78d96e0fc4c72eeb">erase</a> (<a class="el" href="classSLHAea_1_1Block.html#a97db700b9ee634cebc0f564b3ae29574">iterator</a> position)</td></tr>
<tr class="memdesc:a5d4f1180aa89fb1a78d96e0fc4c72eeb"><td class="mdescLeft"> </td><td class="mdescRight">Erases element at given <code>position</code>. <a href="classSLHAea_1_1Block.html#a5d4f1180aa89fb1a78d96e0fc4c72eeb">More...</a><br /></td></tr>
<tr class="separator:a5d4f1180aa89fb1a78d96e0fc4c72eeb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aad40988a5a3e91292f9cef119eb675ec"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a97db700b9ee634cebc0f564b3ae29574">iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#aad40988a5a3e91292f9cef119eb675ec">erase</a> (<a class="el" href="classSLHAea_1_1Block.html#a97db700b9ee634cebc0f564b3ae29574">iterator</a> first, <a class="el" href="classSLHAea_1_1Block.html#a97db700b9ee634cebc0f564b3ae29574">iterator</a> last)</td></tr>
<tr class="memdesc:aad40988a5a3e91292f9cef119eb675ec"><td class="mdescLeft"> </td><td class="mdescRight">Erases a range of elements. <a href="classSLHAea_1_1Block.html#aad40988a5a3e91292f9cef119eb675ec">More...</a><br /></td></tr>
<tr class="separator:aad40988a5a3e91292f9cef119eb675ec"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a09cabdaa8ce96f4b3e73b49827c64e39"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a97db700b9ee634cebc0f564b3ae29574">iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a09cabdaa8ce96f4b3e73b49827c64e39">erase_first</a> (const <a class="el" href="classSLHAea_1_1Block.html#a8ac72904a49b56edb620be8870209b9b">key_type</a> &key)</td></tr>
<tr class="memdesc:a09cabdaa8ce96f4b3e73b49827c64e39"><td class="mdescLeft"> </td><td class="mdescRight">Erases first <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> that matches the provided key. <a href="classSLHAea_1_1Block.html#a09cabdaa8ce96f4b3e73b49827c64e39">More...</a><br /></td></tr>
<tr class="separator:a09cabdaa8ce96f4b3e73b49827c64e39"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a64fabd4f38561009e1c42747aa17c906"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a97db700b9ee634cebc0f564b3ae29574">iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a64fabd4f38561009e1c42747aa17c906">erase_last</a> (const <a class="el" href="classSLHAea_1_1Block.html#a8ac72904a49b56edb620be8870209b9b">key_type</a> &key)</td></tr>
<tr class="memdesc:a64fabd4f38561009e1c42747aa17c906"><td class="mdescLeft"> </td><td class="mdescRight">Erases last <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> that matches the provided key. <a href="classSLHAea_1_1Block.html#a64fabd4f38561009e1c42747aa17c906">More...</a><br /></td></tr>
<tr class="separator:a64fabd4f38561009e1c42747aa17c906"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1235d30734831edc05ba96674cd46dd2"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSLHAea_1_1Block.html#a8e5fc334997fe5c8dc590f8ed63e12d0">size_type</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a1235d30734831edc05ba96674cd46dd2">erase</a> (const <a class="el" href="classSLHAea_1_1Block.html#a8ac72904a49b56edb620be8870209b9b">key_type</a> &key)</td></tr>
<tr class="memdesc:a1235d30734831edc05ba96674cd46dd2"><td class="mdescLeft"> </td><td class="mdescRight">Erases all Lines that match the provided key. <a href="classSLHAea_1_1Block.html#a1235d30734831edc05ba96674cd46dd2">More...</a><br /></td></tr>
<tr class="separator:a1235d30734831edc05ba96674cd46dd2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4268e6e60c931294148f7db79ae22934"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a4268e6e60c931294148f7db79ae22934">swap</a> (<a class="el" href="classSLHAea_1_1Block.html">Block</a> &block)</td></tr>
<tr class="memdesc:a4268e6e60c931294148f7db79ae22934"><td class="mdescLeft"> </td><td class="mdescRight">Swaps data with another Block. <a href="classSLHAea_1_1Block.html#a4268e6e60c931294148f7db79ae22934">More...</a><br /></td></tr>
<tr class="separator:a4268e6e60c931294148f7db79ae22934"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af6512f7d25f661a633f14b5ae6ea1b5e"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#af6512f7d25f661a633f14b5ae6ea1b5e">clear</a> ()</td></tr>
<tr class="memdesc:af6512f7d25f661a633f14b5ae6ea1b5e"><td class="mdescLeft"> </td><td class="mdescRight">Erases all the elements in the Block and set its name to an empty string. <a href="classSLHAea_1_1Block.html#af6512f7d25f661a633f14b5ae6ea1b5e">More...</a><br /></td></tr>
<tr class="separator:af6512f7d25f661a633f14b5ae6ea1b5e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af45096ad6688721fe45b7f5bc0913898"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#af45096ad6688721fe45b7f5bc0913898">reformat</a> ()</td></tr>
<tr class="memdesc:af45096ad6688721fe45b7f5bc0913898"><td class="mdescLeft"> </td><td class="mdescRight">Reformats all Lines in the Block. <a href="classSLHAea_1_1Block.html#af45096ad6688721fe45b7f5bc0913898">More...</a><br /></td></tr>
<tr class="separator:af45096ad6688721fe45b7f5bc0913898"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a799351597728ab630fc48cfead5116a4"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a799351597728ab630fc48cfead5116a4">comment</a> ()</td></tr>
<tr class="memdesc:a799351597728ab630fc48cfead5116a4"><td class="mdescLeft"> </td><td class="mdescRight">Comments all Lines in the Block. <a href="classSLHAea_1_1Block.html#a799351597728ab630fc48cfead5116a4">More...</a><br /></td></tr>
<tr class="separator:a799351597728ab630fc48cfead5116a4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2a3aad25f32cecc2bc8fdd770b354aa4"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a2a3aad25f32cecc2bc8fdd770b354aa4">uncomment</a> ()</td></tr>
<tr class="memdesc:a2a3aad25f32cecc2bc8fdd770b354aa4"><td class="mdescLeft"> </td><td class="mdescRight">Uncomments all Lines in the Block. <a href="classSLHAea_1_1Block.html#a2a3aad25f32cecc2bc8fdd770b354aa4">More...</a><br /></td></tr>
<tr class="separator:a2a3aad25f32cecc2bc8fdd770b354aa4"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="pub-static-methods" name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr class="memitem:a57f0ce7b1c710dba599b1c03f57abea5"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classSLHAea_1_1Block.html">Block</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a57f0ce7b1c710dba599b1c03f57abea5">from_str</a> (const std::string &block)</td></tr>
<tr class="memdesc:a57f0ce7b1c710dba599b1c03f57abea5"><td class="mdescLeft"> </td><td class="mdescRight">Constructs a Block with content from a string. <a href="classSLHAea_1_1Block.html#a57f0ce7b1c710dba599b1c03f57abea5">More...</a><br /></td></tr>
<tr class="separator:a57f0ce7b1c710dba599b1c03f57abea5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a83c4eec8a0cb1cb34d6bd7e589970762"><td class="memTemplParams" colspan="2">template<class InputIterator > </td></tr>
<tr class="memitem:a83c4eec8a0cb1cb34d6bd7e589970762"><td class="memTemplItemLeft" align="right" valign="top">static InputIterator </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classSLHAea_1_1Block.html#a83c4eec8a0cb1cb34d6bd7e589970762">find</a> (InputIterator first, InputIterator last, const <a class="el" href="classSLHAea_1_1Block.html#a8ac72904a49b56edb620be8870209b9b">key_type</a> &key)</td></tr>
<tr class="memdesc:a83c4eec8a0cb1cb34d6bd7e589970762"><td class="mdescLeft"> </td><td class="mdescRight">Tries to locate a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in a range. <a href="classSLHAea_1_1Block.html#a83c4eec8a0cb1cb34d6bd7e589970762">More...</a><br /></td></tr>
<tr class="separator:a83c4eec8a0cb1cb34d6bd7e589970762"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p >Container of Lines that resembles a block in a SLHA structure. </p>
<p >This class is a named container of Lines that resembles a block in a SLHA structure. Unlike a block in a SLHA structure, a Block can contain any number of block definitions or it can be completely empty.</p>
<p >Access to the elements of the Block is provided by the <a class="el" href="classSLHAea_1_1Block.html#afad36644a105473d31ea685fb824d2d2" title="Locates a Line in the Block.">operator[]()</a> and <a class="el" href="classSLHAea_1_1Block.html#ae16b1a0264e73b51a974f09ef254021b" title="Locates a Line in the Block.">at()</a> functions. These take one or more strings resp. ints as argument(s) and compare them against the first strings of the contained Lines (the ints are converted to strings before comparison). The first <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> that matches the provided arguments is then returned, or if no matching <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> is found, an empty <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> is appended to the Block (<a class="el" href="classSLHAea_1_1Block.html#afad36644a105473d31ea685fb824d2d2" title="Locates a Line in the Block.">operator[]()</a>) or <code>std::out_of_range</code> is thrown (<a class="el" href="classSLHAea_1_1Block.html#ae16b1a0264e73b51a974f09ef254021b" title="Locates a Line in the Block.">at()</a>). The special argument <code>"(any)"</code> will be considered equal to all strings in the Lines. For example, <code>at("(any)", "2")</code> returns the first <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> whose second element is <code>"2"</code>. </p>
<p class="definition">Definition at line <a class="el" href="slhaea_8h_source.html#l00730">730</a> of file <a class="el" href="slhaea_8h_source.html">slhaea.h</a>.</p>
</div><h2 class="groupheader">Member Typedef Documentation</h2>
<a id="a9505b8402c77b7eba395e9844ad357e2" name="a9505b8402c77b7eba395e9844ad357e2"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a9505b8402c77b7eba395e9844ad357e2">◆ </a></span>const_iterator</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef impl_type::const_iterator <a class="el" href="classSLHAea_1_1Block.html#a9505b8402c77b7eba395e9844ad357e2">SLHAea::Block::const_iterator</a></td>
</tr>
</table>
</div><div class="memdoc">
<p class="definition">Definition at line <a class="el" href="slhaea_8h_source.html#l00741">741</a> of file <a class="el" href="slhaea_8h_source.html">slhaea.h</a>.</p>
</div>
</div>
<a id="ac2f4cd2a1d19ab86212a655235919e67" name="ac2f4cd2a1d19ab86212a655235919e67"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ac2f4cd2a1d19ab86212a655235919e67">◆ </a></span>const_pointer</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef impl_type::const_pointer <a class="el" href="classSLHAea_1_1Block.html#ac2f4cd2a1d19ab86212a655235919e67">SLHAea::Block::const_pointer</a></td>
</tr>
</table>
</div><div class="memdoc">
<p class="definition">Definition at line <a class="el" href="slhaea_8h_source.html#l00745">745</a> of file <a class="el" href="slhaea_8h_source.html">slhaea.h</a>.</p>
</div>
</div>
<a id="abd9917001e89b474fa7f92cbc0f73104" name="abd9917001e89b474fa7f92cbc0f73104"></a>
<h2 class="memtitle"><span class="permalink"><a href="#abd9917001e89b474fa7f92cbc0f73104">◆ </a></span>const_reference</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef const <a class="el" href="classSLHAea_1_1Line.html">Line</a>& <a class="el" href="classSLHAea_1_1Block.html#abd9917001e89b474fa7f92cbc0f73104">SLHAea::Block::const_reference</a></td>
</tr>
</table>
</div><div class="memdoc">
<p class="definition">Definition at line <a class="el" href="slhaea_8h_source.html#l00739">739</a> of file <a class="el" href="slhaea_8h_source.html">slhaea.h</a>.</p>
</div>
</div>
<a id="a9e2ee5a534ca5ab8f2b99b5ce038794d" name="a9e2ee5a534ca5ab8f2b99b5ce038794d"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a9e2ee5a534ca5ab8f2b99b5ce038794d">◆ </a></span>const_reverse_iterator</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef impl_type::const_reverse_iterator <a class="el" href="classSLHAea_1_1Block.html#a9e2ee5a534ca5ab8f2b99b5ce038794d">SLHAea::Block::const_reverse_iterator</a></td>
</tr>
</table>
</div><div class="memdoc">
<p class="definition">Definition at line <a class="el" href="slhaea_8h_source.html#l00743">743</a> of file <a class="el" href="slhaea_8h_source.html">slhaea.h</a>.</p>
</div>
</div>
<a id="ac67c657c8ae99906485a4f096c645043" name="ac67c657c8ae99906485a4f096c645043"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ac67c657c8ae99906485a4f096c645043">◆ </a></span>difference_type</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef impl_type::difference_type <a class="el" href="classSLHAea_1_1Block.html#ac67c657c8ae99906485a4f096c645043">SLHAea::Block::difference_type</a></td>
</tr>
</table>
</div><div class="memdoc">
<p class="definition">Definition at line <a class="el" href="slhaea_8h_source.html#l00746">746</a> of file <a class="el" href="slhaea_8h_source.html">slhaea.h</a>.</p>
</div>
</div>
<a id="a97db700b9ee634cebc0f564b3ae29574" name="a97db700b9ee634cebc0f564b3ae29574"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a97db700b9ee634cebc0f564b3ae29574">◆ </a></span>iterator</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef impl_type::iterator <a class="el" href="classSLHAea_1_1Block.html#a97db700b9ee634cebc0f564b3ae29574">SLHAea::Block::iterator</a></td>
</tr>
</table>
</div><div class="memdoc">
<p class="definition">Definition at line <a class="el" href="slhaea_8h_source.html#l00740">740</a> of file <a class="el" href="slhaea_8h_source.html">slhaea.h</a>.</p>
</div>
</div>
<a id="a8ac72904a49b56edb620be8870209b9b" name="a8ac72904a49b56edb620be8870209b9b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a8ac72904a49b56edb620be8870209b9b">◆ </a></span>key_type</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef std::vector<std::string> <a class="el" href="classSLHAea_1_1Block.html#a8ac72904a49b56edb620be8870209b9b">SLHAea::Block::key_type</a></td>
</tr>
</table>
</div><div class="memdoc">
<p class="definition">Definition at line <a class="el" href="slhaea_8h_source.html#l00736">736</a> of file <a class="el" href="slhaea_8h_source.html">slhaea.h</a>.</p>
</div>
</div>
<a id="a28c513e273e438699f37080561e40d37" name="a28c513e273e438699f37080561e40d37"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a28c513e273e438699f37080561e40d37">◆ </a></span>pointer</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef impl_type::pointer <a class="el" href="classSLHAea_1_1Block.html#a28c513e273e438699f37080561e40d37">SLHAea::Block::pointer</a></td>
</tr>
</table>
</div><div class="memdoc">
<p class="definition">Definition at line <a class="el" href="slhaea_8h_source.html#l00744">744</a> of file <a class="el" href="slhaea_8h_source.html">slhaea.h</a>.</p>
</div>
</div>
<a id="ab7e77ca83f7fd2746a4ae2e12fe61d73" name="ab7e77ca83f7fd2746a4ae2e12fe61d73"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab7e77ca83f7fd2746a4ae2e12fe61d73">◆ </a></span>reference</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classSLHAea_1_1Line.html">Line</a>& <a class="el" href="classSLHAea_1_1Block.html#ab7e77ca83f7fd2746a4ae2e12fe61d73">SLHAea::Block::reference</a></td>
</tr>
</table>
</div><div class="memdoc">
<p class="definition">Definition at line <a class="el" href="slhaea_8h_source.html#l00738">738</a> of file <a class="el" href="slhaea_8h_source.html">slhaea.h</a>.</p>
</div>
</div>
<a id="acad3268fcb770e3b5c6aa7ce92d329b2" name="acad3268fcb770e3b5c6aa7ce92d329b2"></a>
<h2 class="memtitle"><span class="permalink"><a href="#acad3268fcb770e3b5c6aa7ce92d329b2">◆ </a></span>reverse_iterator</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef impl_type::reverse_iterator <a class="el" href="classSLHAea_1_1Block.html#acad3268fcb770e3b5c6aa7ce92d329b2">SLHAea::Block::reverse_iterator</a></td>
</tr>
</table>
</div><div class="memdoc">
<p class="definition">Definition at line <a class="el" href="slhaea_8h_source.html#l00742">742</a> of file <a class="el" href="slhaea_8h_source.html">slhaea.h</a>.</p>
</div>
</div>
<a id="a8e5fc334997fe5c8dc590f8ed63e12d0" name="a8e5fc334997fe5c8dc590f8ed63e12d0"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a8e5fc334997fe5c8dc590f8ed63e12d0">◆ </a></span>size_type</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef impl_type::size_type <a class="el" href="classSLHAea_1_1Block.html#a8e5fc334997fe5c8dc590f8ed63e12d0">SLHAea::Block::size_type</a></td>
</tr>
</table>
</div><div class="memdoc">
<p class="definition">Definition at line <a class="el" href="slhaea_8h_source.html#l00747">747</a> of file <a class="el" href="slhaea_8h_source.html">slhaea.h</a>.</p>
</div>
</div>
<a id="a76c7f1cc8a882ee0f6bb22c0c0d2adfa" name="a76c7f1cc8a882ee0f6bb22c0c0d2adfa"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a76c7f1cc8a882ee0f6bb22c0c0d2adfa">◆ </a></span>value_type</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classSLHAea_1_1Line.html">Line</a> <a class="el" href="classSLHAea_1_1Block.html#a76c7f1cc8a882ee0f6bb22c0c0d2adfa">SLHAea::Block::value_type</a></td>
</tr>
</table>
</div><div class="memdoc">
<p class="definition">Definition at line <a class="el" href="slhaea_8h_source.html#l00737">737</a> of file <a class="el" href="slhaea_8h_source.html">slhaea.h</a>.</p>
</div>
</div>
<h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a id="a7814b7669762164fc66c4d690b471368" name="a7814b7669762164fc66c4d690b471368"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a7814b7669762164fc66c4d690b471368">◆ </a></span>Block() <span class="overload">[1/2]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">SLHAea::Block::Block </td>
<td>(</td>
<td class="paramtype">const std::string & </td>
<td class="paramname"><em>name</em> = <code>""</code></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">explicit</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Constructs an empty Block. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">name</td><td>Name of the Block. </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="slhaea_8h_source.html#l00758">758</a> of file <a class="el" href="slhaea_8h_source.html">slhaea.h</a>.</p>
</div>
</div>
<a id="ae4a9295987873bc2abd8dd82e8d63afa" name="ae4a9295987873bc2abd8dd82e8d63afa"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ae4a9295987873bc2abd8dd82e8d63afa">◆ </a></span>Block() <span class="overload">[2/2]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">SLHAea::Block::Block </td>
<td>(</td>
<td class="paramtype">std::istream & </td>
<td class="paramname"><em>is</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">explicit</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Constructs a Block with content from an input stream. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">is</td><td>Input stream to read content from. </td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSLHAea_1_1Block.html#adc034e353a072bc1ef65bcf0ecbbbca9" title="Assigns content from an input stream to the Block.">read()</a> </dd></dl>
<p class="definition">Definition at line <a class="el" href="slhaea_8h_source.html#l00766">766</a> of file <a class="el" href="slhaea_8h_source.html">slhaea.h</a>.</p>
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a id="ae16b1a0264e73b51a974f09ef254021b" name="ae16b1a0264e73b51a974f09ef254021b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ae16b1a0264e73b51a974f09ef254021b">◆ </a></span>at() <span class="overload">[1/8]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classSLHAea_1_1Block.html#ab7e77ca83f7fd2746a4ae2e12fe61d73">reference</a> SLHAea::Block::at </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classSLHAea_1_1Block.html#a8ac72904a49b56edb620be8870209b9b">key_type</a> & </td>
<td class="paramname"><em>key</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Locates a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>First strings of the <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> to be located. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Read/write reference to sought-after <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a>. </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
<table class="exception">
<tr><td class="paramname">std::out_of_range</td><td>If <code>key</code> does not match any <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a>.</td></tr>
</table>
</dd>
</dl>
<p>This function takes a key (which is a vector of strings) and locates the <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> whose first strings are equal to the strings in <code>key</code>. If no such <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> exists, <code>std::out_of_range</code> is thrown. </p>
<p class="definition">Definition at line <a class="el" href="slhaea_8h_source.html#l00959">959</a> of file <a class="el" href="slhaea_8h_source.html">slhaea.h</a>.</p>
</div>
</div>
<a id="a2ba09830f36ae450e18da7e2eeb04bee" name="a2ba09830f36ae450e18da7e2eeb04bee"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a2ba09830f36ae450e18da7e2eeb04bee">◆ </a></span>at() <span class="overload">[2/8]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classSLHAea_1_1Block.html#abd9917001e89b474fa7f92cbc0f73104">const_reference</a> SLHAea::Block::at </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classSLHAea_1_1Block.html#a8ac72904a49b56edb620be8870209b9b">key_type</a> & </td>
<td class="paramname"><em>key</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Locates a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>First strings of the <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> to be located. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Read-only (constant) reference to sought-after <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a>. </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
<table class="exception">
<tr><td class="paramname">std::out_of_range</td><td>If <code>key</code> does not match any <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a>.</td></tr>
</table>
</dd>
</dl>
<p>This function takes a key (which is a vector of strings) and locates the <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> whose first strings are equal to the strings in <code>key</code>. If no such <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> exists, <code>std::out_of_range</code> is thrown. </p>
<p class="definition">Definition at line <a class="el" href="slhaea_8h_source.html#l00979">979</a> of file <a class="el" href="slhaea_8h_source.html">slhaea.h</a>.</p>
</div>
</div>
<a id="aa8cd0b332e993a74c185790fdc3531e6" name="aa8cd0b332e993a74c185790fdc3531e6"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aa8cd0b332e993a74c185790fdc3531e6">◆ </a></span>at() <span class="overload">[3/8]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classSLHAea_1_1Block.html#ab7e77ca83f7fd2746a4ae2e12fe61d73">reference</a> SLHAea::Block::at </td>
<td>(</td>
<td class="paramtype">const std::string & </td>
<td class="paramname"><em>s0</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const std::string & </td>
<td class="paramname"><em>s1</em> = <code>""</code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const std::string & </td>
<td class="paramname"><em>s2</em> = <code>""</code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const std::string & </td>
<td class="paramname"><em>s3</em> = <code>""</code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const std::string & </td>
<td class="paramname"><em>s4</em> = <code>""</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Locates a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">s0,s1,s2,s3,s4</td><td>First strings of the <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> to be located. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Read/write reference to sought-after <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a>. </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
<table class="exception">
<tr><td class="paramname">std::out_of_range</td><td>If provided strings do not match any <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a>.</td></tr>
</table>
</dd>
</dl>
<p>This function takes up to five strings and locates the <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> whose first strings are equal to all provided non-empty strings. If no such <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> exists, <code>std::out_of_range</code> is thrown. </p>
<p class="definition">Definition at line <a class="el" href="slhaea_8h_source.html#l01029">1029</a> of file <a class="el" href="slhaea_8h_source.html">slhaea.h</a>.</p>
</div>
</div>
<a id="af29e60ded65a70ea8b6f951c04b20dd6" name="af29e60ded65a70ea8b6f951c04b20dd6"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af29e60ded65a70ea8b6f951c04b20dd6">◆ </a></span>at() <span class="overload">[4/8]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classSLHAea_1_1Block.html#abd9917001e89b474fa7f92cbc0f73104">const_reference</a> SLHAea::Block::at </td>
<td>(</td>
<td class="paramtype">const std::string & </td>
<td class="paramname"><em>s0</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const std::string & </td>
<td class="paramname"><em>s1</em> = <code>""</code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const std::string & </td>
<td class="paramname"><em>s2</em> = <code>""</code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const std::string & </td>
<td class="paramname"><em>s3</em> = <code>""</code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const std::string & </td>
<td class="paramname"><em>s4</em> = <code>""</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Locates a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">s0,s1,s2,s3,s4</td><td>First strings of the <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> to be located. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Read-only (constant) reference to sought-after <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a>. </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
<table class="exception">
<tr><td class="paramname">std::out_of_range</td><td>If provided strings do not match any <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a>.</td></tr>
</table>
</dd>
</dl>
<p>This function takes up to five strings and locates the <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> whose first strings are equal to all provided non-empty strings. If no such <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> exists, <code>std::out_of_range</code> is thrown. </p>
<p class="definition">Definition at line <a class="el" href="slhaea_8h_source.html#l01047">1047</a> of file <a class="el" href="slhaea_8h_source.html">slhaea.h</a>.</p>
</div>
</div>
<a id="a243fcbb8eb6d8ea2edfe31cbbd8b4a72" name="a243fcbb8eb6d8ea2edfe31cbbd8b4a72"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a243fcbb8eb6d8ea2edfe31cbbd8b4a72">◆ </a></span>at() <span class="overload">[5/8]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classSLHAea_1_1Block.html#ab7e77ca83f7fd2746a4ae2e12fe61d73">reference</a> SLHAea::Block::at </td>
<td>(</td>
<td class="paramtype">const std::vector< int > & </td>
<td class="paramname"><em>key</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Locates a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>Integers that are used to locate the <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a>. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Read/write reference to sought-after <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a>. </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
<table class="exception">
<tr><td class="paramname">std::out_of_range</td><td>If <code>key</code> does not match any <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a>.</td></tr>
</table>
</dd>
</dl>
<p>This function takes a vector of ints and locates the <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> whose first strings are equal to the to strings converted ints in <code>key</code>. If no such <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> exists, <code>std::out_of_range</code> is thrown. </p>
<p class="definition">Definition at line <a class="el" href="slhaea_8h_source.html#l00999">999</a> of file <a class="el" href="slhaea_8h_source.html">slhaea.h</a>.</p>
</div>
</div>
<a id="a5c554e985258754a622b312933e40a5c" name="a5c554e985258754a622b312933e40a5c"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a5c554e985258754a622b312933e40a5c">◆ </a></span>at() <span class="overload">[6/8]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classSLHAea_1_1Block.html#abd9917001e89b474fa7f92cbc0f73104">const_reference</a> SLHAea::Block::at </td>
<td>(</td>
<td class="paramtype">const std::vector< int > & </td>
<td class="paramname"><em>key</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Locates a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>Integers that are used to locate the <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a>. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Read-only (constant) reference to sought-after <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a>. </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
<table class="exception">
<tr><td class="paramname">std::out_of_range</td><td>If <code>key</code> does not match any <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a>.</td></tr>
</table>
</dd>
</dl>
<p>This function takes a vector of ints and locates the <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> whose first strings are equal to the to strings converted ints in <code>key</code>. If no such <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> exists, <code>std::out_of_range</code> is thrown. </p>
<p class="definition">Definition at line <a class="el" href="slhaea_8h_source.html#l01013">1013</a> of file <a class="el" href="slhaea_8h_source.html">slhaea.h</a>.</p>
</div>
</div>
<a id="a21204fb6fd988d226a5032c0bb77e43a" name="a21204fb6fd988d226a5032c0bb77e43a"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a21204fb6fd988d226a5032c0bb77e43a">◆ </a></span>at() <span class="overload">[7/8]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classSLHAea_1_1Block.html#ab7e77ca83f7fd2746a4ae2e12fe61d73">reference</a> SLHAea::Block::at </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>i0</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>i1</em> = <code>no_index_</code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>i2</em> = <code>no_index_</code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>i3</em> = <code>no_index_</code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>i4</em> = <code>no_index_</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Locates a <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> in the Block. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">i0,i1,i2,i3,i4</td><td>Integers that are used to locate the <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a>. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Read/write reference to sought-after <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a>. </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
<table class="exception">
<tr><td class="paramname">std::out_of_range</td><td>If provided ints do not match any <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a>.</td></tr>
</table>
</dd>
</dl>
<p>This function takes up to five ints and locates the <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> whose first strings are equal to all provided to string converted ints. If no such <a class="el" href="classSLHAea_1_1Line.html" title="Container of strings that represents a line in a SLHA structure.">Line</a> exists, <code>std::out_of_range</code> is thrown. </p>
<p class="definition">Definition at line <a class="el" href="slhaea_8h_source.html#l01065">1065</a> of file <a class="el" href="slhaea_8h_source.html">slhaea.h</a>.</p>
</div>
</div>
<a id="a6c51b515f17f0757b42806274fd49711" name="a6c51b515f17f0757b42806274fd49711"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a6c51b515f17f0757b42806274fd49711">◆ </a></span>at() <span class="overload">[8/8]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classSLHAea_1_1Block.html#abd9917001e89b474fa7f92cbc0f73104">const_reference</a> SLHAea::Block::at </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>i0</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>i1</em> = <code>no_index_</code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>