-
Notifications
You must be signed in to change notification settings - Fork 217
/
Copy pathstring_scanner.rbs
1627 lines (1575 loc) · 57 KB
/
string_scanner.rbs
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
# <!-- rdoc-file=ext/strscan/strscan.c -->
# Class `StringScanner` supports processing a stored string as a stream;
# this code creates a new `StringScanner` object with string `'foobarbaz'`:
# require 'strscan'
# scanner = StringScanner.new('foobarbaz')
#
# ## About the Examples
# All examples here assume that `StringScanner` has been required:
# require 'strscan'
#
# Some examples here assume that these constants are defined:
# MULTILINE_TEXT = <<~EOT
# Go placidly amid the noise and haste,
# and remember what peace there may be in silence.
# EOT
#
# HIRAGANA_TEXT = 'こんにちは'
#
# ENGLISH_TEXT = 'Hello'
#
# Some examples here assume that certain helper methods are defined:
# * `put_situation(scanner)`:
# Displays the values of the scanner's
# methods #pos, #charpos, #rest, and #rest_size.
# * `put_match_values(scanner)`:
# Displays the scanner's [match
# values](rdoc-ref:StringScanner@Match+Values).
# * `match_values_cleared?(scanner)`:
# Returns whether the scanner's [match
# values](rdoc-ref:StringScanner@Match+Values) are cleared.
# See examples [[here]](ext/strscan/helper_methods_md.html).
# ## The `StringScanner` Object
# This code creates a `StringScanner` object
# (we'll call it simply a *scanner*),
# and shows some of its basic properties:
# scanner = StringScanner.new('foobarbaz')
# scanner.string # => "foobarbaz"
# put_situation(scanner)
# # Situation:
# # pos: 0
# # charpos: 0
# # rest: "foobarbaz"
# # rest_size: 9
#
# The scanner has:
# * A *stored string*, which is:
# * Initially set by StringScanner.new(string) to the given `string`
# (`'foobarbaz'` in the example above).
# * Modifiable by methods #string=(new_string) and #concat(more_string).
# * Returned by method #string.
# More at [Stored String](rdoc-ref:StringScanner@Stored+String) below.
# * A *position*;
# a zero-based index into the bytes of the stored string (*not* into its
# characters):
# * Initially set by StringScanner.new to `0`.
# * Returned by method #pos.
# * Modifiable explicitly by methods #reset, #terminate, and
# #pos=(new_pos).
# * Modifiable implicitly (various traversing methods, among others).
# More at [Byte
# Position](rdoc-ref:StringScanner@Byte+Position+-28Position-29) below.
# * A *target substring*,
# which is a trailing substring of the stored string;
# it extends from the current position to the end of the stored string:
# * Initially set by StringScanner.new(string) to the given `string`
# (`'foobarbaz'` in the example above).
# * Returned by method #rest.
# * Modified by any modification to either the stored string or the
# position.
# **Most importantly**:
# the searching and traversing methods operate on the target substring,
# which may be (and often is) less than the entire stored string.
# More at [Target Substring](rdoc-ref:StringScanner@Target+Substring) below.
# ## Stored String
# The *stored string* is the string stored in the `StringScanner` object.
# Each of these methods sets, modifies, or returns the stored string:
# Method | Effect
# --------------------|-----------------------------------------------
# ::new(string) | Creates a new scanner for the given string.
# #string=(new_string)| Replaces the existing stored string.
# #concat(more_string)|Appends a string to the existing stored string.
# #string | Returns the stored string.
# ## Positions
# A `StringScanner` object maintains a zero-based *byte position*
# and a zero-based *character position*.
# Each of these methods explicitly sets positions:
# Method | Effect
# ------------------------|--------------------------------------------------------
# #reset |Sets both positions to zero (begining of stored string).
# #terminate | Sets both positions to the end of the stored string.
# #pos=(new_byte_position)| Sets byte position; adjusts character position.
# ### Byte Position (Position)
# The byte position (or simply *position*)
# is a zero-based index into the bytes in the scanner's stored string;
# for a new `StringScanner` object, the byte position is zero.
# When the byte position is:
# * Zero (at the beginning), the target substring is the entire stored string.
# * Equal to the size of the stored string (at the end),
# the target substring is the empty string `''`.
# To get or set the byte position:
# * #pos: returns the byte position.
# * #pos=(new_pos): sets the byte position.
# Many methods use the byte position as the basis for finding matches;
# many others set, increment, or decrement the byte position:
# scanner = StringScanner.new('foobar')
# scanner.pos # => 0
# scanner.scan(/foo/) # => "foo" # Match found.
# scanner.pos # => 3 # Byte position incremented.
# scanner.scan(/foo/) # => nil # Match not found.
# scanner.pos # => 3 # Byte position not changed.
#
# Some methods implicitly modify the byte position;
# see:
# * [Setting the Target
# Substring](rdoc-ref:StringScanner@Setting+the+Target+Substring).
# * [Traversing the Target
# Substring](rdoc-ref:StringScanner@Traversing+the+Target+Substring).
# The values of these methods are derived directly from the values of #pos and
# #string:
# * #charpos: the [character
# position](rdoc-ref:StringScanner@Character+Position).
# * #rest: the [target substring](rdoc-ref:StringScanner@Target+Substring).
# * #rest_size: `rest.size`.
# ### Character Position
# The character position is a zero-based index into the *characters*
# in the stored string;
# for a new `StringScanner` object, the character position is zero.
# Method #charpos returns the character position;
# its value may not be reset explicitly.
# Some methods change (increment or reset) the character position;
# see:
# * [Setting the Target
# Substring](rdoc-ref:StringScanner@Setting+the+Target+Substring).
# * [Traversing the Target
# Substring](rdoc-ref:StringScanner@Traversing+the+Target+Substring).
# Example (string includes multi-byte characters):
# scanner = StringScanner.new(ENGLISH_TEXT) # Five 1-byte characters.
# scanner.concat(HIRAGANA_TEXT) # Five 3-byte characters
# scanner.string # => "Helloこんにちは" # Twenty bytes in all.
# put_situation(scanner)
# # Situation:
# # pos: 0
# # charpos: 0
# # rest: "Helloこんにちは"
# # rest_size: 20
# scanner.scan(/Hello/) # => "Hello" # Five 1-byte characters.
# put_situation(scanner)
# # Situation:
# # pos: 5
# # charpos: 5
# # rest: "こんにちは"
# # rest_size: 15
# scanner.getch # => "こ" # One 3-byte character.
# put_situation(scanner)
# # Situation:
# # pos: 8
# # charpos: 6
# # rest: "んにちは"
# # rest_size: 12
#
# ## Target Substring
# The target substring is the the part of the [stored
# string](rdoc-ref:StringScanner@Stored+String)
# that extends from the current [byte
# position](rdoc-ref:StringScanner@Byte+Position+-28Position-29) to the end of
# the stored string;
# it is always either:
# * The entire stored string (byte position is zero).
# * A trailing substring of the stored string (byte position positive).
# The target substring is returned by method #rest,
# and its size is returned by method #rest_size.
# Examples:
# scanner = StringScanner.new('foobarbaz')
# put_situation(scanner)
# # Situation:
# # pos: 0
# # charpos: 0
# # rest: "foobarbaz"
# # rest_size: 9
# scanner.pos = 3
# put_situation(scanner)
# # Situation:
# # pos: 3
# # charpos: 3
# # rest: "barbaz"
# # rest_size: 6
# scanner.pos = 9
# put_situation(scanner)
# # Situation:
# # pos: 9
# # charpos: 9
# # rest: ""
# # rest_size: 0
#
# ### Setting the Target Substring
# The target substring is set whenever:
# * The [stored string](rdoc-ref:StringScanner@Stored+String) is set (position
# reset to zero; target substring set to stored string).
# * The [byte position](rdoc-ref:StringScanner@Byte+Position+-28Position-29)
# is set (target substring adjusted accordingly).
# ### Querying the Target Substring
# This table summarizes (details and examples at the links):
# Method | Returns
# ----------|---------------------------------
# #rest | Target substring.
# #rest_size|Size (bytes) of target substring.
# ### Searching the Target Substring
# A *search* method examines the target substring,
# but does not advance the [positions](rdoc-ref:StringScanner@Positions)
# or (by implication) shorten the target substring.
# This table summarizes (details and examples at the links):
# Method | Returns |Sets Match Values?
# ---------------------|---------------------------------------------|------------------
# #check(pattern) | Matched leading substring or +nil+. | Yes.
# #check_until(pattern)| Matched substring (anywhere) or +nil+. | Yes.
# #exist?(pattern) | Matched substring (anywhere) end index. | Yes.
# #match?(pattern) | Size of matched leading substring or +nil+. | Yes.
# #peek(size) | Leading substring of given length (bytes). | No.
# #peek_byte | Integer leading byte or +nil+. | No.
# #rest |Target substring (from byte position to end).| No.
# ### Traversing the Target Substring
# A *traversal* method examines the target substring,
# and, if successful:
# * Advances the [positions](rdoc-ref:StringScanner@Positions).
# * Shortens the target substring.
# This table summarizes (details and examples at links):
# Method | Returns |Sets Match Values?
# --------------------|----------------------------------------------------|------------------
# #get_byte | Leading byte or +nil+. | No.
# #getch | Leading character or +nil+. | No.
# #scan(pattern) | Matched leading substring or +nil+. | Yes.
# #scan_byte | Integer leading byte or +nil+. | No.
# #scan_until(pattern)| Matched substring (anywhere) or +nil+. | Yes.
# #skip(pattern) | Matched leading substring size or +nil+. | Yes.
# #skip_until(pattern)|Position delta to end-of-matched-substring or +nil+.| Yes.
# #unscan | +self+. | No.
# ## Querying the Scanner
# Each of these methods queries the scanner object
# without modifying it (details and examples at links)
# Method | Returns
# -------------------|--------------------------------
# #beginning_of_line?| +true+ or +false+.
# #charpos | Character position.
# #eos? | +true+ or +false+.
# #fixed_anchor? | +true+ or +false+.
# #inspect |String representation of +self+.
# #pos | Byte position.
# #rest | Target substring.
# #rest_size | Size of target substring.
# #string | Stored string.
# ## Matching
# `StringScanner` implements pattern matching via Ruby class
# [Regexp](https://docs.ruby-lang.org/en/master/Regexp.html),
# and its matching behaviors are the same as Ruby's
# except for the [fixed-anchor
# property](rdoc-ref:StringScanner@Fixed-Anchor+Property).
# ### Matcher Methods
# Each *matcher method* takes a single argument `pattern`,
# and attempts to find a matching substring in the [target
# substring](rdoc-ref:StringScanner@Target+Substring).
# Method | Pattern Type |Matches Target Substring| Success Return |May Update Positions?
# ------------|-----------------|------------------------|------------------|---------------------
# #check |Regexp or String.| At beginning. |Matched substring.| No.
# #check_until|Regexp or String.| Anywhere. | Substring. | No.
# #match? |Regexp or String.| At beginning. | Match size. | No.
# #exist? |Regexp or String.| Anywhere. | Substring size. | No.
# #scan |Regexp or String.| At beginning. |Matched substring.| Yes.
# #scan_until |Regexp or String.| Anywhere. | Substring. | Yes.
# #skip |Regexp or String.| At beginning. | Match size. | Yes.
# #skip_until |Regexp or String.| Anywhere. | Substring size. | Yes.
#
# Which matcher you choose will depend on:
# * Where you want to find a match:
# * Only at the beginning of the target substring:
# #check, #match?, #scan, #skip.
# * Anywhere in the target substring:
# #check_until, #exist?, #scan_until, #skip_until.
# * Whether you want to:
# * Traverse, by advancing the positions:
# #scan, #scan_until, #skip, #skip_until.
# * Keep the positions unchanged:
# #check, #check_until, #match?, #exist?.
# * What you want for the return value:
# * The matched substring: #check, #scan.
# * The substring: #check_until, #scan_until.
# * The match size: #match?, #skip.
# * The substring size: #exist?, #skip_until.
# ### Match Values
# The *match values* in a `StringScanner` object
# generally contain the results of the most recent attempted match.
# Each match value may be thought of as:
# * *Clear*: Initially, or after an unsuccessful match attempt:
# usually, `false`, `nil`, or `{}`.
# * *Set*: After a successful match attempt:
# `true`, string, array, or hash.
# Each of these methods clears match values:
# * ::new(string).
# * #reset.
# * #terminate.
# Each of these methods attempts a match based on a pattern,
# and either sets match values (if successful) or clears them (if not);
# * #check(pattern)
# * #check_until(pattern)
# * #exist?(pattern)
# * #match?(pattern)
# * #scan(pattern)
# * #scan_until(pattern)
# * #skip(pattern)
# * #skip_until(pattern)
# #### Basic Match Values
# Basic match values are those not related to captures.
# Each of these methods returns a basic match value:
# Method | Return After Match |Return After No Match
# -------------|--------------------------------------|---------------------
# #matched? | +true+. | +false+.
# #matched_size| Size of matched substring. | +nil+.
# #matched | Matched substring. | +nil+.
# #pre_match |Substring preceding matched substring.| +nil+.
# #post_match |Substring following matched substring.| +nil+.
#
# See examples below.
# #### Captured Match Values
# Captured match values are those related to
# [captures](https://docs.ruby-lang.org/en/master/Regexp.html#class-Regexp-label
# -Groups+and+Captures).
# Each of these methods returns a captured match value:
# Method | Return After Match |Return After No Match
# ---------------|---------------------------------------|---------------------
# #size | Count of captured substrings. | +nil+.
# #[](n) | <tt>n</tt>th captured substring. | +nil+.
# #captures | Array of all captured substrings. | +nil+.
# #values_at(*n) |Array of specified captured substrings.| +nil+.
# #named_captures| Hash of named captures. | <tt>{}</tt>.
#
# See examples below.
# #### Match Values Examples
# Successful basic match attempt (no captures):
# scanner = StringScanner.new('foobarbaz')
# scanner.exist?(/bar/)
# put_match_values(scanner)
# # Basic match values:
# # matched?: true
# # matched_size: 3
# # pre_match: "foo"
# # matched : "bar"
# # post_match: "baz"
# # Captured match values:
# # size: 1
# # captures: []
# # named_captures: {}
# # values_at: ["bar", nil]
# # []:
# # [0]: "bar"
# # [1]: nil
#
# Failed basic match attempt (no captures);
# scanner = StringScanner.new('foobarbaz')
# scanner.exist?(/nope/)
# match_values_cleared?(scanner) # => true
#
# Successful unnamed capture match attempt:
# scanner = StringScanner.new('foobarbazbatbam')
# scanner.exist?(/(foo)bar(baz)bat(bam)/)
# put_match_values(scanner)
# # Basic match values:
# # matched?: true
# # matched_size: 15
# # pre_match: ""
# # matched : "foobarbazbatbam"
# # post_match: ""
# # Captured match values:
# # size: 4
# # captures: ["foo", "baz", "bam"]
# # named_captures: {}
# # values_at: ["foobarbazbatbam", "foo", "baz", "bam", nil]
# # []:
# # [0]: "foobarbazbatbam"
# # [1]: "foo"
# # [2]: "baz"
# # [3]: "bam"
# # [4]: nil
#
# Successful named capture match attempt;
# same as unnamed above, except for #named_captures:
# scanner = StringScanner.new('foobarbazbatbam')
# scanner.exist?(/(?<x>foo)bar(?<y>baz)bat(?<z>bam)/)
# scanner.named_captures # => {"x"=>"foo", "y"=>"baz", "z"=>"bam"}
#
# Failed unnamed capture match attempt:
# scanner = StringScanner.new('somestring')
# scanner.exist?(/(foo)bar(baz)bat(bam)/)
# match_values_cleared?(scanner) # => true
#
# Failed named capture match attempt;
# same as unnamed above, except for #named_captures:
# scanner = StringScanner.new('somestring')
# scanner.exist?(/(?<x>foo)bar(?<y>baz)bat(?<z>bam)/)
# match_values_cleared?(scanner) # => false
# scanner.named_captures # => {"x"=>nil, "y"=>nil, "z"=>nil}
#
# ## Fixed-Anchor Property
# Pattern matching in `StringScanner` is the same as in Ruby's,
# except for its fixed-anchor property,
# which determines the meaning of `'\A'`:
# * `false` (the default): matches the current byte position.
# scanner = StringScanner.new('foobar')
# scanner.scan(/\A./) # => "f"
# scanner.scan(/\A./) # => "o"
# scanner.scan(/\A./) # => "o"
# scanner.scan(/\A./) # => "b"
#
# * `true`: matches the beginning of the target substring;
# never matches unless the byte position is zero:
# scanner = StringScanner.new('foobar', fixed_anchor: true)
# scanner.scan(/\A./) # => "f"
# scanner.scan(/\A./) # => nil
# scanner.reset
# scanner.scan(/\A./) # => "f"
#
# The fixed-anchor property is set when the `StringScanner` object is created,
# and may not be modified
# (see StringScanner.new);
# method #fixed_anchor? returns the setting.
#
class StringScanner
# <!--
# rdoc-file=ext/strscan/strscan.c
# - StringScanner.must_C_version
# -->
# This method is defined for backward compatibility.
#
def self.must_C_version: () -> self
# <!-- rdoc-file=ext/strscan/strscan.c -->
# * Appends the given `more_string`
# to the [stored string](rdoc-ref:StringScanner@Stored+String).
# * Returns `self`.
# * Does not affect the [positions](rdoc-ref:StringScanner@Positions)
# or [match values](rdoc-ref:StringScanner@Match+Values).
# scanner = StringScanner.new('foo')
# scanner.string # => "foo"
# scanner.terminate
# scanner.concat('barbaz') # => #<StringScanner 3/9 "foo" @ "barba...">
# scanner.string # => "foobarbaz"
# put_situation(scanner)
# # Situation:
# # pos: 3
# # charpos: 3
# # rest: "barbaz"
# # rest_size: 6
#
def <<: (String) -> self
# <!--
# rdoc-file=ext/strscan/strscan.c
# - [](specifier) -> substring or nil
# -->
# Returns a captured substring or `nil`;
# see [Captured Match Values](rdoc-ref:StringScanner@Captured+Match+Values).
# When there are captures:
# scanner = StringScanner.new('Fri Dec 12 1975 14:39')
# scanner.scan(/(?<wday>\w+) (?<month>\w+) (?<day>\d+) /)
#
# * `specifier` zero: returns the entire matched substring:
# scanner[0] # => "Fri Dec 12 "
# scanner.pre_match # => ""
# scanner.post_match # => "1975 14:39"
#
# * `specifier` positive integer. returns the `n`th capture, or `nil` if out
# of range:
# scanner[1] # => "Fri"
# scanner[2] # => "Dec"
# scanner[3] # => "12"
# scanner[4] # => nil
#
# * `specifier` negative integer. counts backward from the last subgroup:
# scanner[-1] # => "12"
# scanner[-4] # => "Fri Dec 12 "
# scanner[-5] # => nil
#
# * `specifier` symbol or string. returns the named subgroup, or `nil` if no
# such:
# scanner[:wday] # => "Fri"
# scanner['wday'] # => "Fri"
# scanner[:month] # => "Dec"
# scanner[:day] # => "12"
# scanner[:nope] # => nil
#
# When there are no captures, only `[0]` returns non-`nil`:
# scanner = StringScanner.new('foobarbaz')
# scanner.exist?(/bar/)
# scanner[0] # => "bar"
# scanner[1] # => nil
#
# For a failed match, even `[0]` returns `nil`:
# scanner.scan(/nope/) # => nil
# scanner[0] # => nil
# scanner[1] # => nil
#
def []: (Integer) -> String?
# <!--
# rdoc-file=ext/strscan/strscan.c
# - beginning_of_line? -> true or false
# -->
# Returns whether the
# [position](rdoc-ref:StringScanner@Byte+Position+-28Position-29) is at the
# beginning of a line;
# that is, at the beginning of the [stored
# string](rdoc-ref:StringScanner@Stored+String)
# or immediately after a newline:
# scanner = StringScanner.new(MULTILINE_TEXT)
# scanner.string
# # => "Go placidly amid the noise and haste,\nand remember what peace there may be in silence.\n"
# scanner.pos # => 0
# scanner.beginning_of_line? # => true
#
# scanner.scan_until(/,/) # => "Go placidly amid the noise and haste,"
# scanner.beginning_of_line? # => false
#
# scanner.scan(/\n/) # => "\n"
# scanner.beginning_of_line? # => true
#
# scanner.terminate
# scanner.beginning_of_line? # => true
#
# scanner.concat('x')
# scanner.terminate
# scanner.beginning_of_line? # => false
#
# StringScanner#bol? is an alias for StringScanner#beginning_of_line?.
#
def beginning_of_line?: () -> bool
alias bol? beginning_of_line?
# <!--
# rdoc-file=ext/strscan/strscan.c
# - captures -> substring_array or nil
# -->
# Returns the array of [captured match
# values](rdoc-ref:StringScanner@Captured+Match+Values) at indexes `(1..)`
# if the most recent match attempt succeeded, or `nil` otherwise:
# scanner = StringScanner.new('Fri Dec 12 1975 14:39')
# scanner.captures # => nil
#
# scanner.exist?(/(?<wday>\w+) (?<month>\w+) (?<day>\d+) /)
# scanner.captures # => ["Fri", "Dec", "12"]
# scanner.values_at(*0..4) # => ["Fri Dec 12 ", "Fri", "Dec", "12", nil]
#
# scanner.exist?(/Fri/)
# scanner.captures # => []
#
# scanner.scan(/nope/)
# scanner.captures # => nil
#
def captures: () -> Array[String]?
# <!--
# rdoc-file=ext/strscan/strscan.c
# - charpos()
# -->
# call-seq:
# charpos -> character_position
# Returns the [character position](rdoc-ref:StringScanner@Character+Position)
# (initially zero),
# which may be different from the [byte
# position](rdoc-ref:StringScanner@Byte+Position+-28Position-29)
# given by method #pos:
# scanner = StringScanner.new(HIRAGANA_TEXT)
# scanner.string # => "こんにちは"
# scanner.getch # => "こ" # 3-byte character.
# scanner.getch # => "ん" # 3-byte character.
# put_situation(scanner)
# # Situation:
# # pos: 6
# # charpos: 2
# # rest: "にちは"
# # rest_size: 9
#
def charpos: () -> Integer
# <!--
# rdoc-file=ext/strscan/strscan.c
# - check(pattern) -> matched_substring or nil
# -->
# Attempts to [match](rdoc-ref:StringScanner@Matching) the given `pattern`
# at the beginning of the [target
# substring](rdoc-ref:StringScanner@Target+Substring);
# does not modify the [positions](rdoc-ref:StringScanner@Positions).
# If the match succeeds:
# * Returns the matched substring.
# * Sets all [match values](rdoc-ref:StringScanner@Match+Values).
# scanner = StringScanner.new('foobarbaz')
# scanner.pos = 3
# scanner.check('bar') # => "bar"
# put_match_values(scanner)
# # Basic match values:
# # matched?: true
# # matched_size: 3
# # pre_match: "foo"
# # matched : "bar"
# # post_match: "baz"
# # Captured match values:
# # size: 1
# # captures: []
# # named_captures: {}
# # values_at: ["bar", nil]
# # []:
# # [0]: "bar"
# # [1]: nil
# # => 0..1
# put_situation(scanner)
# # Situation:
# # pos: 3
# # charpos: 3
# # rest: "barbaz"
# # rest_size: 6
#
# If the match fails:
# * Returns `nil`.
# * Clears all [match values](rdoc-ref:StringScanner@Match+Values).
# scanner.check(/nope/) # => nil
# match_values_cleared?(scanner) # => true
#
def check: (Regexp) -> String?
# <!--
# rdoc-file=ext/strscan/strscan.c
# - check_until(pattern) -> substring or nil
# -->
# Attempts to [match](rdoc-ref:StringScanner@Matching) the given `pattern`
# anywhere (at any
# [position](rdoc-ref:StringScanner@Byte+Position+-28Position-29))
# in the [target substring](rdoc-ref:StringScanner@Target+Substring);
# does not modify the [positions](rdoc-ref:StringScanner@Positions).
# If the match succeeds:
# * Sets all [match values](rdoc-ref:StringScanner@Match+Values).
# * Returns the matched substring,
# which extends from the current
# [position](rdoc-ref:StringScanner@Byte+Position+-28Position-29)
# to the end of the matched substring.
# scanner = StringScanner.new('foobarbazbatbam')
# scanner.pos = 6
# scanner.check_until(/bat/) # => "bazbat"
# put_match_values(scanner)
# # Basic match values:
# # matched?: true
# # matched_size: 3
# # pre_match: "foobarbaz"
# # matched : "bat"
# # post_match: "bam"
# # Captured match values:
# # size: 1
# # captures: []
# # named_captures: {}
# # values_at: ["bat", nil]
# # []:
# # [0]: "bat"
# # [1]: nil
# put_situation(scanner)
# # Situation:
# # pos: 6
# # charpos: 6
# # rest: "bazbatbam"
# # rest_size: 9
#
# If the match fails:
# * Clears all [match values](rdoc-ref:StringScanner@Match+Values).
# * Returns `nil`.
# scanner.check_until(/nope/) # => nil
# match_values_cleared?(scanner) # => true
#
def check_until: (Regexp) -> String
# <!--
# rdoc-file=ext/strscan/strscan.c
# - clear()
# -->
# Equivalent to #terminate. This method is obsolete; use #terminate instead.
#
def clear: () -> void
# <!--
# rdoc-file=ext/strscan/strscan.c
# - concat(more_string) -> self
# -->
# * Appends the given `more_string`
# to the [stored string](rdoc-ref:StringScanner@Stored+String).
# * Returns `self`.
# * Does not affect the [positions](rdoc-ref:StringScanner@Positions)
# or [match values](rdoc-ref:StringScanner@Match+Values).
# scanner = StringScanner.new('foo')
# scanner.string # => "foo"
# scanner.terminate
# scanner.concat('barbaz') # => #<StringScanner 3/9 "foo" @ "barba...">
# scanner.string # => "foobarbaz"
# put_situation(scanner)
# # Situation:
# # pos: 3
# # charpos: 3
# # rest: "barbaz"
# # rest_size: 6
#
alias concat <<
# <!--
# rdoc-file=ext/strscan/strscan.c
# - empty?()
# -->
# Equivalent to #eos?. This method is obsolete, use #eos? instead.
#
def empty?: () -> bool
# <!--
# rdoc-file=ext/strscan/strscan.c
# - eos? -> true or false
# -->
# Returns whether the
# [position](rdoc-ref:StringScanner@Byte+Position+-28Position-29)
# is at the end of the [stored string](rdoc-ref:StringScanner@Stored+String):
# scanner = StringScanner.new('foobarbaz')
# scanner.eos? # => false
# pos = 3
# scanner.eos? # => false
# scanner.terminate
# scanner.eos? # => true
#
def eos?: () -> bool
# <!--
# rdoc-file=ext/strscan/strscan.c
# - exist?(pattern) -> byte_offset or nil
# -->
# Attempts to [match](rdoc-ref:StringScanner@Matching) the given `pattern`
# anywhere (at any
# [position](rdoc-ref:StringScanner@Byte+Position+-28Position-29))
# n the [target substring](rdoc-ref:StringScanner@Target+Substring);
# does not modify the [positions](rdoc-ref:StringScanner@Positions).
# If the match succeeds:
# * Returns a byte offset:
# the distance in bytes between the current
# [position](rdoc-ref:StringScanner@Byte+Position+-28Position-29)
# and the end of the matched substring.
# * Sets all [match values](rdoc-ref:StringScanner@Match+Values).
# scanner = StringScanner.new('foobarbazbatbam')
# scanner.pos = 6
# scanner.exist?(/bat/) # => 6
# put_match_values(scanner)
# # Basic match values:
# # matched?: true
# # matched_size: 3
# # pre_match: "foobarbaz"
# # matched : "bat"
# # post_match: "bam"
# # Captured match values:
# # size: 1
# # captures: []
# # named_captures: {}
# # values_at: ["bat", nil]
# # []:
# # [0]: "bat"
# # [1]: nil
# put_situation(scanner)
# # Situation:
# # pos: 6
# # charpos: 6
# # rest: "bazbatbam"
# # rest_size: 9
#
# If the match fails:
# * Returns `nil`.
# * Clears all [match values](rdoc-ref:StringScanner@Match+Values).
# scanner.exist?(/nope/) # => nil
# match_values_cleared?(scanner) # => true
#
def exist?: (Regexp) -> Integer?
# <!--
# rdoc-file=ext/strscan/strscan.c
# - fixed_anchor? -> true or false
# -->
# Returns whether the [fixed-anchor
# property](rdoc-ref:StringScanner@Fixed-Anchor+Property) is set.
#
def fixed_anchor?: () -> bool
# <!--
# rdoc-file=ext/strscan/strscan.c
# - get_byte()
# -->
# call-seq:
# get_byte -> byte_as_character or nil
# Returns the next byte, if available:
# * If the [position](rdoc-ref:StringScanner@Byte+Position+-28Position-29)
# is not at the end of the [stored
# string](rdoc-ref:StringScanner@Stored+String):
# * Returns the next byte.
# * Increments the [byte
# position](rdoc-ref:StringScanner@Byte+Position+-28Position-29).
# * Adjusts the [character
# position](rdoc-ref:StringScanner@Character+Position).
# scanner = StringScanner.new(HIRAGANA_TEXT)
# # => #<StringScanner 0/15 @ "\xE3\x81\x93\xE3\x82...">
# scanner.string # => "こんにちは"
# [scanner.get_byte, scanner.pos, scanner.charpos] # => ["\xE3", 1, 1]
# [scanner.get_byte, scanner.pos, scanner.charpos] # => ["\x81", 2, 2]
# [scanner.get_byte, scanner.pos, scanner.charpos] # => ["\x93", 3, 1]
# [scanner.get_byte, scanner.pos, scanner.charpos] # => ["\xE3", 4, 2]
# [scanner.get_byte, scanner.pos, scanner.charpos] # => ["\x82", 5, 3]
# [scanner.get_byte, scanner.pos, scanner.charpos] # => ["\x93", 6, 2]
#
# * Otherwise, returns `nil`, and does not change the positions.
# scanner.terminate
# [scanner.get_byte, scanner.pos, scanner.charpos] # => [nil, 15, 5]
#
def get_byte: () -> String?
# <!--
# rdoc-file=ext/strscan/strscan.c
# - getbyte()
# -->
# Equivalent to #get_byte. This method is obsolete; use #get_byte instead.
#
def getbyte: () -> String?
# <!--
# rdoc-file=ext/strscan/strscan.c
# - getch()
# -->
# call-seq:
# getch -> character or nil
# Returns the next (possibly multibyte) character,
# if available:
# * If the [position](rdoc-ref:StringScanner@Byte+Position+-28Position-29)
# is at the beginning of a character:
# * Returns the character.
# * Increments the [character
# position](rdoc-ref:StringScanner@Character+Position) by 1.
# * Increments the [byte
# position](rdoc-ref:StringScanner@Byte+Position+-28Position-29)
# by the size (in bytes) of the character.
# scanner = StringScanner.new(HIRAGANA_TEXT)
# scanner.string # => "こんにちは"
# [scanner.getch, scanner.pos, scanner.charpos] # => ["こ", 3, 1]
# [scanner.getch, scanner.pos, scanner.charpos] # => ["ん", 6, 2]
# [scanner.getch, scanner.pos, scanner.charpos] # => ["に", 9, 3]
# [scanner.getch, scanner.pos, scanner.charpos] # => ["ち", 12, 4]
# [scanner.getch, scanner.pos, scanner.charpos] # => ["は", 15, 5]
# [scanner.getch, scanner.pos, scanner.charpos] # => [nil, 15, 5]
#
# * If the [position](rdoc-ref:StringScanner@Byte+Position+-28Position-29) is
# within a multi-byte character
# (that is, not at its beginning),
# behaves like #get_byte (returns a 1-byte character):
# scanner.pos = 1
# [scanner.getch, scanner.pos, scanner.charpos] # => ["\x81", 2, 2]
# [scanner.getch, scanner.pos, scanner.charpos] # => ["\x93", 3, 1]
# [scanner.getch, scanner.pos, scanner.charpos] # => ["ん", 6, 2]
#
# * If the [position](rdoc-ref:StringScanner@Byte+Position+-28Position-29) is
# at the end of the [stored string](rdoc-ref:StringScanner@Stored+String),
# returns `nil` and does not modify the positions:
# scanner.terminate
# [scanner.getch, scanner.pos, scanner.charpos] # => [nil, 15, 5]
#
def getch: () -> String?
# <!--
# rdoc-file=ext/strscan/strscan.c
# - inspect -> string
# -->
# Returns a string representation of `self` that may show:
# 1. The current
# [position](rdoc-ref:StringScanner@Byte+Position+-28Position-29).
# 2. The size (in bytes) of the [stored
# string](rdoc-ref:StringScanner@Stored+String).
# 3. The substring preceding the current position.
# 4. The substring following the current position (which is also the [target
# substring](rdoc-ref:StringScanner@Target+Substring)).
# scanner = StringScanner.new("Fri Dec 12 1975 14:39")
# scanner.pos = 11
# scanner.inspect # => "#<StringScanner 11/21 \"...c 12 \" @ \"1975 ...\">"
#
# If at beginning-of-string, item 4 above (following substring) is omitted:
# scanner.reset
# scanner.inspect # => "#<StringScanner 0/21 @ \"Fri D...\">"
#
# If at end-of-string, all items above are omitted:
# scanner.terminate
# scanner.inspect # => "#<StringScanner fin>"
#
def inspect: () -> String
# <!--
# rdoc-file=ext/strscan/strscan.c
# - match?(pattern) -> updated_position or nil
# -->
# Attempts to [match](rdoc-ref:StringScanner@Matching) the given `pattern`
# at the beginning of the [target
# substring](rdoc-ref:StringScanner@Target+Substring);
# does not modify the [positions](rdoc-ref:StringScanner@Positions).
# If the match succeeds:
# * Sets [match values](rdoc-ref:StringScanner@Match+Values).
# * Returns the size in bytes of the matched substring.
# scanner = StringScanner.new('foobarbaz')
# scanner.pos = 3
# scanner.match?(/bar/) => 3
# put_match_values(scanner)
# # Basic match values:
# # matched?: true
# # matched_size: 3
# # pre_match: "foo"
# # matched : "bar"
# # post_match: "baz"
# # Captured match values:
# # size: 1
# # captures: []
# # named_captures: {}
# # values_at: ["bar", nil]
# # []:
# # [0]: "bar"
# # [1]: nil
# put_situation(scanner)
# # Situation:
# # pos: 3
# # charpos: 3
# # rest: "barbaz"
# # rest_size: 6
#
# If the match fails:
# * Clears match values.
# * Returns `nil`.
# * Does not increment positions.
# scanner.match?(/nope/) # => nil
# match_values_cleared?(scanner) # => true
#
def match?: (Regexp) -> Integer?
# <!--
# rdoc-file=ext/strscan/strscan.c
# - matched -> matched_substring or nil
# -->
# Returns the matched substring from the most recent
# [match](rdoc-ref:StringScanner@Matching) attempt
# if it was successful,
# or `nil` otherwise;
# see [Basic Matched Values](rdoc-ref:StringScanner@Basic+Match+Values):
# scanner = StringScanner.new('foobarbaz')
# scanner.matched # => nil
# scanner.pos = 3
# scanner.match?(/bar/) # => 3
# scanner.matched # => "bar"
# scanner.match?(/nope/) # => nil
# scanner.matched # => nil
#
def matched: () -> String?
# <!--
# rdoc-file=ext/strscan/strscan.c
# - matched? -> true or false
# -->
# Returns `true` of the most recent [match
# attempt](rdoc-ref:StringScanner@Matching) was successful,
# `false` otherwise;
# see [Basic Matched Values](rdoc-ref:StringScanner@Basic+Match+Values):
# scanner = StringScanner.new('foobarbaz')
# scanner.matched? # => false
# scanner.pos = 3
# scanner.exist?(/baz/) # => 6
# scanner.matched? # => true
# scanner.exist?(/nope/) # => nil
# scanner.matched? # => false
#
def matched?: () -> bool
# <!--
# rdoc-file=ext/strscan/strscan.c
# - matched_size -> substring_size or nil
# -->
# Returns the size (in bytes) of the matched substring
# from the most recent match [match attempt](rdoc-ref:StringScanner@Matching) if
# it was successful,
# or `nil` otherwise;
# see [Basic Matched Values](rdoc-ref:StringScanner@Basic+Match+Values):
# scanner = StringScanner.new('foobarbaz')
# scanner.matched_size # => nil
#
# pos = 3
# scanner.exist?(/baz/) # => 9
# scanner.matched_size # => 3
#
# scanner.exist?(/nope/) # => nil
# scanner.matched_size # => nil
#
def matched_size: () -> Integer?
# <!--
# rdoc-file=ext/strscan/strscan.c
# - peek(length) -> substring