-
Notifications
You must be signed in to change notification settings - Fork 216
/
Copy pathstring.rbs
3569 lines (3429 loc) · 117 KB
/
string.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=string.rb -->
# A String object has an arbitrary sequence of bytes, typically representing
# text or binary data. A String object may be created using String::new or as
# literals.
#
# String objects differ from Symbol objects in that Symbol objects are designed
# to be used as identifiers, instead of text or data.
#
# You can create a String object explicitly with:
#
# * A [string literal](rdoc-ref:syntax/literals.rdoc@String+Literals).
# * A [heredoc literal](rdoc-ref:syntax/literals.rdoc@Here+Document+Literals).
#
#
# You can convert certain objects to Strings with:
#
# * Method #String.
#
#
# Some String methods modify `self`. Typically, a method whose name ends with
# `!` modifies `self` and returns `self`; often a similarly named method
# (without the `!`) returns a new string.
#
# In general, if there exist both bang and non-bang version of method, the bang!
# mutates and the non-bang! does not. However, a method without a bang can also
# mutate, such as String#replace.
#
# ## Substitution Methods
#
# These methods perform substitutions:
#
# * String#sub: One substitution (or none); returns a new string.
# * String#sub!: One substitution (or none); returns `self`.
# * String#gsub: Zero or more substitutions; returns a new string.
# * String#gsub!: Zero or more substitutions; returns `self`.
#
#
# Each of these methods takes:
#
# * A first argument, `pattern` (string or regexp), that specifies the
# substring(s) to be replaced.
#
# * Either of these:
#
# * A second argument, `replacement` (string or hash), that determines the
# replacing string.
# * A block that will determine the replacing string.
#
#
#
# The examples in this section mostly use methods String#sub and String#gsub;
# the principles illustrated apply to all four substitution methods.
#
# **Argument `pattern`**
#
# Argument `pattern` is commonly a regular expression:
#
# s = 'hello'
# s.sub(/[aeiou]/, '*')# => "h*llo"
# s.gsub(/[aeiou]/, '*') # => "h*ll*"
# s.gsub(/[aeiou]/, '')# => "hll"
# s.sub(/ell/, 'al') # => "halo"
# s.gsub(/xyzzy/, '*') # => "hello"
# 'THX1138'.gsub(/\d+/, '00') # => "THX00"
#
# When `pattern` is a string, all its characters are treated as ordinary
# characters (not as regexp special characters):
#
# 'THX1138'.gsub('\d+', '00') # => "THX1138"
#
# **\String `replacement`**
#
# If `replacement` is a string, that string will determine the replacing string
# that is to be substituted for the matched text.
#
# Each of the examples above uses a simple string as the replacing string.
#
# String `replacement` may contain back-references to the pattern's captures:
#
# * `\n` (*n* a non-negative integer) refers to `$n`.
# * `\k<name>` refers to the named capture `name`.
#
#
# See regexp.rdoc for details.
#
# Note that within the string `replacement`, a character combination such as
# `$&` is treated as ordinary text, and not as a special match variable.
# However, you may refer to some special match variables using these
# combinations:
#
# * `\&` and `\0` correspond to `$&`, which contains the complete matched
# text.
# * `\'` corresponds to `$'`, which contains string after match.
# * `\`` corresponds to `$``, which contains string before match.
# * `+` corresponds to `$+`, which contains last capture group.
#
#
# See regexp.rdoc for details.
#
# Note that `\\\` is interpreted as an escape, i.e., a single backslash.
#
# Note also that a string literal consumes backslashes. See [String
# Literals](rdoc-ref:syntax/literals.rdoc@String+Literals) for details about
# string literals.
#
# A back-reference is typically preceded by an additional backslash. For
# example, if you want to write a back-reference `\&` in `replacement` with a
# double-quoted string literal, you need to write `"..\\\\&.."`.
#
# If you want to write a non-back-reference string `\&` in `replacement`, you
# need first to escape the backslash to prevent this method from interpreting it
# as a back-reference, and then you need to escape the backslashes again to
# prevent a string literal from consuming them: `"..\\\\\\\\&.."`.
#
# You may want to use the block form to avoid a lot of backslashes.
#
# **\Hash `replacement`**
#
# If argument `replacement` is a hash, and `pattern` matches one of its keys,
# the replacing string is the value for that key:
#
# h = {'foo' => 'bar', 'baz' => 'bat'}
# 'food'.sub('foo', h) # => "bard"
#
# Note that a symbol key does not match:
#
# h = {foo: 'bar', baz: 'bat'}
# 'food'.sub('foo', h) # => "d"
#
# **Block**
#
# In the block form, the current match string is passed to the block; the
# block's return value becomes the replacing string:
#
# s = '@'
# '1234'.gsub(/\d/) {|match| s.succ! } # => "ABCD"
#
# Special match variables such as `$1`, `$2`, `$``, `$&`, and `$'` are set
# appropriately.
#
# ## Whitespace in Strings
#
# In class String, *whitespace* is defined as a contiguous sequence of
# characters consisting of any mixture of the following:
#
# * NL (null): `"\x00"`, `"\u0000"`.
# * HT (horizontal tab): `"\x09"`, `"\t"`.
# * LF (line feed): `"\x0a"`, `"\n"`.
# * VT (vertical tab): `"\x0b"`, `"\v"`.
# * FF (form feed): `"\x0c"`, `"\f"`.
# * CR (carriage return): `"\x0d"`, `"\r"`.
# * SP (space): `"\x20"`, `" "`.
#
#
# Whitespace is relevant for these methods:
#
# * #lstrip, #lstrip!: strip leading whitespace.
# * #rstrip, #rstrip!: strip trailing whitespace.
# * #strip, #strip!: strip leading and trailing whitespace.
#
#
# ## String Slices
#
# A *slice* of a string is a substring that is selected by certain criteria.
#
# These instance methods make use of slicing:
#
# * String#[] (also aliased as String#slice) returns a slice copied from
# `self`.
# * String#[]= returns a copy of `self` with a slice replaced.
# * String#slice! returns `self` with a slice removed.
#
#
# Each of the above methods takes arguments that determine the slice to be
# copied or replaced.
#
# The arguments have several forms. For string `string`, the forms are:
#
# * `string[index]`.
# * `string[start, length]`.
# * `string[range]`.
# * `string[regexp, capture = 0]`.
# * `string[substring]`.
#
#
# **`string[index]`**
#
# When non-negative integer argument `index` is given, the slice is the
# 1-character substring found in `self` at character offset `index`:
#
# 'bar'[0] # => "b"
# 'bar'[2] # => "r"
# 'bar'[20] # => nil
# 'тест'[2] # => "с"
# 'こんにちは'[4] # => "は"
#
# When negative integer `index` is given, the slice begins at the offset given
# by counting backward from the end of `self`:
#
# 'bar'[-3] # => "b"
# 'bar'[-1] # => "r"
# 'bar'[-20] # => nil
#
# **`string[start, length]`**
#
# When non-negative integer arguments `start` and `length` are given, the slice
# begins at character offset `start`, if it exists, and continues for `length`
# characters, if available:
#
# 'foo'[0, 2] # => "fo"
# 'тест'[1, 2] # => "ес"
# 'こんにちは'[2, 2] # => "にち"
# # Zero length.
# 'foo'[2, 0] # => ""
# # Length not entirely available.
# 'foo'[1, 200] # => "oo"
# # Start out of range.
# 'foo'[4, 2] # => nil
#
# Special case: if `start` is equal to the length of `self`, the slice is a new
# empty string:
#
# 'foo'[3, 2] # => ""
# 'foo'[3, 200] # => ""
#
# When negative `start` and non-negative `length` are given, the slice beginning
# is determined by counting backward from the end of `self`, and the slice
# continues for `length` characters, if available:
#
# 'foo'[-2, 2] # => "oo"
# 'foo'[-2, 200] # => "oo"
# # Start out of range.
# 'foo'[-4, 2] # => nil
#
# When negative `length` is given, there is no slice:
#
# 'foo'[1, -1] # => nil
# 'foo'[-2, -1] # => nil
#
# **`string[range]`**
#
# When Range argument `range` is given, creates a substring of `string` using
# the indices in `range`. The slice is then determined as above:
#
# 'foo'[0..1] # => "fo"
# 'foo'[0, 2] # => "fo"
#
# 'foo'[2...2] # => ""
# 'foo'[2, 0] # => ""
#
# 'foo'[1..200] # => "oo"
# 'foo'[1, 200] # => "oo"
#
# 'foo'[4..5] # => nil
# 'foo'[4, 2] # => nil
#
# 'foo'[-4..-3] # => nil
# 'foo'[-4, 2] # => nil
#
# 'foo'[3..4] # => ""
# 'foo'[3, 2] # => ""
#
# 'foo'[-2..-1] # => "oo"
# 'foo'[-2, 2] # => "oo"
#
# 'foo'[-2..197] # => "oo"
# 'foo'[-2, 200] # => "oo"
#
# **`string[regexp, capture = 0]`**
#
# When the Regexp argument `regexp` is given, and the `capture` argument is `0`,
# the slice is the first matching substring found in `self`:
#
# 'foo'[/o/] # => "o"
# 'foo'[/x/] # => nil
# s = 'hello there'
# s[/[aeiou](.)\1/] # => "ell"
# s[/[aeiou](.)\1/, 0] # => "ell"
#
# If argument `capture` is given and not `0`, it should be either an capture
# group index (integer) or a capture group name (string or symbol); the slice is
# the specified capture (see Regexp@Capturing):
#
# s = 'hello there'
# s[/[aeiou](.)\1/, 1] # => "l"
# s[/(?<vowel>[aeiou])(?<non_vowel>[^aeiou])/, "non_vowel"] # => "l"
# s[/(?<vowel>[aeiou])(?<non_vowel>[^aeiou])/, :vowel] # => "e"
#
# If an invalid capture group index is given, there is no slice. If an invalid
# capture group name is given, `IndexError` is raised.
#
# **`string[substring]`**
#
# When the single String argument `substring` is given, returns the substring
# from `self` if found, otherwise `nil`:
#
# 'foo'['oo'] # => "oo"
# 'foo'['xx'] # => nil
#
# ## What's Here
#
# First, what's elsewhere. Class String:
#
# * Inherits from [class Object](rdoc-ref:Object@What-27s+Here).
# * Includes [module Comparable](rdoc-ref:Comparable@What-27s+Here).
#
#
# Here, class String provides methods that are useful for:
#
# * [Creating a String](rdoc-ref:String@Methods+for+Creating+a+String)
# * [Frozen/Unfrozen
# Strings](rdoc-ref:String@Methods+for+a+Frozen-2FUnfrozen+String)
# * [Querying](rdoc-ref:String@Methods+for+Querying)
# * [Comparing](rdoc-ref:String@Methods+for+Comparing)
# * [Modifying a String](rdoc-ref:String@Methods+for+Modifying+a+String)
# * [Converting to New
# String](rdoc-ref:String@Methods+for+Converting+to+New+String)
# * [Converting to
# Non-String](rdoc-ref:String@Methods+for+Converting+to+Non--5CString)
# * [Iterating](rdoc-ref:String@Methods+for+Iterating)
#
#
# ### Methods for Creating a String
#
# * ::new: Returns a new string.
# * ::try_convert: Returns a new string created from a given object.
#
#
# ### Methods for a Frozen/Unfrozen String
#
# * #+@: Returns a string that is not frozen: `self`, if not frozen;
# `self.dup` otherwise.
# * #-@: Returns a string that is frozen: `self`, if already frozen;
# `self.freeze` otherwise.
# * #freeze: Freezes `self`, if not already frozen; returns `self`.
#
#
# ### Methods for Querying
#
# *Counts*
#
# * #length, #size: Returns the count of characters (not bytes).
# * #empty?: Returns `true` if `self.length` is zero; `false` otherwise.
# * #bytesize: Returns the count of bytes.
# * #count: Returns the count of substrings matching given strings.
#
#
# *Substrings*
#
# * #=~: Returns the index of the first substring that matches a given Regexp
# or other object; returns `nil` if no match is found.
# * #index: Returns the index of the *first* occurrence of a given substring;
# returns `nil` if none found.
# * #rindex: Returns the index of the *last* occurrence of a given substring;
# returns `nil` if none found.
# * #include?: Returns `true` if the string contains a given substring;
# `false` otherwise.
# * #match: Returns a MatchData object if the string matches a given Regexp;
# `nil` otherwise.
# * #match?: Returns `true` if the string matches a given Regexp; `false`
# otherwise.
# * #start_with?: Returns `true` if the string begins with any of the given
# substrings.
# * #end_with?: Returns `true` if the string ends with any of the given
# substrings.
#
#
# *Encodings*
#
# * #encoding: Returns the Encoding object that represents the encoding of the
# string.
# * #unicode_normalized?: Returns `true` if the string is in Unicode
# normalized form; `false` otherwise.
# * #valid_encoding?: Returns `true` if the string contains only characters
# that are valid for its encoding.
# * #ascii_only?: Returns `true` if the string has only ASCII characters;
# `false` otherwise.
#
#
# *Other*
#
# * #sum: Returns a basic checksum for the string: the sum of each byte.
# * #hash: Returns the integer hash code.
#
#
# ### Methods for Comparing
#
# * #==, #===: Returns `true` if a given other string has the same content as
# `self`.
# * #eql?: Returns `true` if the content is the same as the given other
# string.
# * #<=>: Returns -1, 0, or 1 as a given other string is smaller than, equal
# to, or larger than `self`.
# * #casecmp: Ignoring case, returns -1, 0, or 1 as a given other string is
# smaller than, equal to, or larger than `self`.
# * #casecmp?: Returns `true` if the string is equal to a given string after
# Unicode case folding; `false` otherwise.
#
#
# ### Methods for Modifying a String
#
# Each of these methods modifies `self`.
#
# *Insertion*
#
# * #insert: Returns `self` with a given string inserted at a given offset.
# * #<<: Returns `self` concatenated with a given string or integer.
#
#
# *Substitution*
#
# * #sub!: Replaces the first substring that matches a given pattern with a
# given replacement string; returns `self` if any changes, `nil` otherwise.
# * #gsub!: Replaces each substring that matches a given pattern with a given
# replacement string; returns `self` if any changes, `nil` otherwise.
# * #succ!, #next!: Returns `self` modified to become its own successor.
# * #replace: Returns `self` with its entire content replaced by a given
# string.
# * #reverse!: Returns `self` with its characters in reverse order.
# * #setbyte: Sets the byte at a given integer offset to a given value;
# returns the argument.
# * #tr!: Replaces specified characters in `self` with specified replacement
# characters; returns `self` if any changes, `nil` otherwise.
# * #tr_s!: Replaces specified characters in `self` with specified replacement
# characters, removing duplicates from the substrings that were modified;
# returns `self` if any changes, `nil` otherwise.
#
#
# *Casing*
#
# * #capitalize!: Upcases the initial character and downcases all others;
# returns `self` if any changes, `nil` otherwise.
# * #downcase!: Downcases all characters; returns `self` if any changes, `nil`
# otherwise.
# * #upcase!: Upcases all characters; returns `self` if any changes, `nil`
# otherwise.
# * #swapcase!: Upcases each downcase character and downcases each upcase
# character; returns `self` if any changes, `nil` otherwise.
#
#
# *Encoding*
#
# * #encode!: Returns `self` with all characters transcoded from one given
# encoding into another.
# * #unicode_normalize!: Unicode-normalizes `self`; returns `self`.
# * #scrub!: Replaces each invalid byte with a given character; returns
# `self`.
# * #force_encoding: Changes the encoding to a given encoding; returns `self`.
#
#
# *Deletion*
#
# * #clear: Removes all content, so that `self` is empty; returns `self`.
# * #slice!, #[]=: Removes a substring determined by a given index,
# start/length, range, regexp, or substring.
# * #squeeze!: Removes contiguous duplicate characters; returns `self`.
# * #delete!: Removes characters as determined by the intersection of
# substring arguments.
# * #lstrip!: Removes leading whitespace; returns `self` if any changes, `nil`
# otherwise.
# * #rstrip!: Removes trailing whitespace; returns `self` if any changes,
# `nil` otherwise.
# * #strip!: Removes leading and trailing whitespace; returns `self` if any
# changes, `nil` otherwise.
# * #chomp!: Removes trailing record separator, if found; returns `self` if
# any changes, `nil` otherwise.
# * #chop!: Removes trailing newline characters if found; otherwise removes
# the last character; returns `self` if any changes, `nil` otherwise.
#
#
# ### Methods for Converting to New String
#
# Each of these methods returns a new String based on `self`, often just a
# modified copy of `self`.
#
# *Extension*
#
# * #*: Returns the concatenation of multiple copies of `self`,
# * #+: Returns the concatenation of `self` and a given other string.
# * #center: Returns a copy of `self` centered between pad substring.
# * #concat: Returns the concatenation of `self` with given other strings.
# * #prepend: Returns the concatenation of a given other string with `self`.
# * #ljust: Returns a copy of `self` of a given length, right-padded with a
# given other string.
# * #rjust: Returns a copy of `self` of a given length, left-padded with a
# given other string.
#
#
# *Encoding*
#
# * #b: Returns a copy of `self` with ASCII-8BIT encoding.
# * #scrub: Returns a copy of `self` with each invalid byte replaced with a
# given character.
# * #unicode_normalize: Returns a copy of `self` with each character
# Unicode-normalized.
# * #encode: Returns a copy of `self` with all characters transcoded from one
# given encoding into another.
#
#
# *Substitution*
#
# * #dump: Returns a copy of `self` with all non-printing characters replaced
# by xHH notation and all special characters escaped.
# * #undump: Returns a copy of `self` with all `\xNN` notation replace by
# `\uNNNN` notation and all escaped characters unescaped.
# * #sub: Returns a copy of `self` with the first substring matching a given
# pattern replaced with a given replacement string;.
# * #gsub: Returns a copy of `self` with each substring that matches a given
# pattern replaced with a given replacement string.
# * #succ, #next: Returns the string that is the successor to `self`.
# * #reverse: Returns a copy of `self` with its characters in reverse order.
# * #tr: Returns a copy of `self` with specified characters replaced with
# specified replacement characters.
# * #tr_s: Returns a copy of `self` with specified characters replaced with
# specified replacement characters, removing duplicates from the substrings
# that were modified.
# * #%: Returns the string resulting from formatting a given object into
# `self`
#
#
# *Casing*
#
# * #capitalize: Returns a copy of `self` with the first character upcased and
# all other characters downcased.
# * #downcase: Returns a copy of `self` with all characters downcased.
# * #upcase: Returns a copy of `self` with all characters upcased.
# * #swapcase: Returns a copy of `self` with all upcase characters downcased
# and all downcase characters upcased.
#
#
# *Deletion*
#
# * #delete: Returns a copy of `self` with characters removed
# * #delete_prefix: Returns a copy of `self` with a given prefix removed.
# * #delete_suffix: Returns a copy of `self` with a given suffix removed.
# * #lstrip: Returns a copy of `self` with leading whitespace removed.
# * #rstrip: Returns a copy of `self` with trailing whitespace removed.
# * #strip: Returns a copy of `self` with leading and trailing whitespace
# removed.
# * #chomp: Returns a copy of `self` with a trailing record separator removed,
# if found.
# * #chop: Returns a copy of `self` with trailing newline characters or the
# last character removed.
# * #squeeze: Returns a copy of `self` with contiguous duplicate characters
# removed.
# * #[], #slice: Returns a substring determined by a given index,
# start/length, or range, or string.
# * #byteslice: Returns a substring determined by a given index, start/length,
# or range.
# * #chr: Returns the first character.
#
#
# *Duplication*
#
# * #to_s, $to_str: If `self` is a subclass of String, returns `self` copied
# into a String; otherwise, returns `self`.
#
#
# ### Methods for Converting to Non-String
#
# Each of these methods converts the contents of `self` to a non-String.
#
# *Characters, Bytes, and Clusters*
#
# * #bytes: Returns an array of the bytes in `self`.
# * #chars: Returns an array of the characters in `self`.
# * #codepoints: Returns an array of the integer ordinals in `self`.
# * #getbyte: Returns an integer byte as determined by a given index.
# * #grapheme_clusters: Returns an array of the grapheme clusters in `self`.
#
#
# *Splitting*
#
# * #lines: Returns an array of the lines in `self`, as determined by a given
# record separator.
# * #partition: Returns a 3-element array determined by the first substring
# that matches a given substring or regexp,
# * #rpartition: Returns a 3-element array determined by the last substring
# that matches a given substring or regexp,
# * #split: Returns an array of substrings determined by a given delimiter --
# regexp or string -- or, if a block given, passes those substrings to the
# block.
#
#
# *Matching*
#
# * #scan: Returns an array of substrings matching a given regexp or string,
# or, if a block given, passes each matching substring to the block.
# * #unpack: Returns an array of substrings extracted from `self` according to
# a given format.
# * #unpack1: Returns the first substring extracted from `self` according to a
# given format.
#
#
# *Numerics*
#
# * #hex: Returns the integer value of the leading characters, interpreted as
# hexadecimal digits.
# * #oct: Returns the integer value of the leading characters, interpreted as
# octal digits.
# * #ord: Returns the integer ordinal of the first character in `self`.
# * #to_i: Returns the integer value of leading characters, interpreted as an
# integer.
# * #to_f: Returns the floating-point value of leading characters, interpreted
# as a floating-point number.
#
#
# *Strings and Symbols*
#
# * #inspect: Returns copy of `self`, enclosed in double-quotes, with special
# characters escaped.
# * #to_sym, #intern: Returns the symbol corresponding to `self`.
#
#
# ### Methods for Iterating
#
# * #each_byte: Calls the given block with each successive byte in `self`.
# * #each_char: Calls the given block with each successive character in
# `self`.
# * #each_codepoint: Calls the given block with each successive integer
# codepoint in `self`.
# * #each_grapheme_cluster: Calls the given block with each successive
# grapheme cluster in `self`.
# * #each_line: Calls the given block with each successive line in `self`, as
# determined by a given record separator.
# * #upto: Calls the given block with each string value returned by successive
# calls to #succ.
#
class String
include Comparable
# A `selector` is a special type of string, used within methods like `String#tr`.
type selector = string
# <!--
# rdoc-file=string.c
# - String.try_convert(object) -> object, new_string, or nil
# -->
# If `object` is a String object, returns `object`.
#
# Otherwise if `object` responds to `:to_str`, calls `object.to_str` and returns
# the result.
#
# Returns `nil` if `object` does not respond to `:to_str`.
#
# Raises an exception unless `object.to_str` returns a String object.
#
def self.try_convert: (String object) -> String # technically will return `object` unchanged.
| (_ToStr object) -> String
| (untyped object) -> String?
# <!--
# rdoc-file=string.c
# - String.new(string = '', **opts) -> new_string
# -->
# Returns a new String that is a copy of `string`.
#
# With no arguments, returns the empty string with the Encoding `ASCII-8BIT`:
#
# s = String.new
# s # => ""
# s.encoding # => #<Encoding:ASCII-8BIT>
#
# With optional argument `string` and no keyword arguments, returns a copy of
# `string` with the same encoding:
#
# String.new('foo') # => "foo"
# String.new('тест') # => "тест"
# String.new('こんにちは') # => "こんにちは"
#
# (Unlike String.new, a [string
# literal](rdoc-ref:syntax/literals.rdoc@String+Literals) like `''` or a [here
# document literal](rdoc-ref:syntax/literals.rdoc@Here+Document+Literals) always
# has [script encoding](rdoc-ref:encodings.rdoc@Script+Encoding).)
#
# With optional keyword argument `encoding`, returns a copy of `string` with the
# specified encoding; the `encoding` may be an Encoding object, an encoding
# name, or an encoding name alias:
#
# String.new('foo', encoding: Encoding::US_ASCII).encoding # => #<Encoding:US-ASCII>
# String.new('foo', encoding: 'US-ASCII').encoding # => #<Encoding:US-ASCII>
# String.new('foo', encoding: 'ASCII').encoding # => #<Encoding:US-ASCII>
#
# The given encoding need not be valid for the string's content, and that
# validity is not checked:
#
# s = String.new('こんにちは', encoding: 'ascii')
# s.valid_encoding? # => false
#
# But the given `encoding` itself is checked:
#
# String.new('foo', encoding: 'bar') # Raises ArgumentError.
#
# With optional keyword argument `capacity`, returns a copy of `string` (or an
# empty string, if `string` is not given); the given `capacity` is advisory
# only, and may or may not set the size of the internal buffer, which may in
# turn affect performance:
#
# String.new(capacity: 1)
# String.new('foo', capacity: 4096)
#
# The `string`, `encoding`, and `capacity` arguments may all be used together:
#
# String.new('hello', encoding: 'UTF-8', capacity: 25)
#
def initialize: (?string source, ?encoding: encoding?, ?capacity: int?) -> self
# <!--
# rdoc-file=string.c
# - replace(other_string) -> self
# -->
# Replaces the contents of `self` with the contents of `other_string`:
#
# s = 'foo' # => "foo"
# s.replace('bar') # => "bar"
#
alias initialize_copy replace
# <!--
# rdoc-file=string.c
# - string % object -> new_string
# -->
# Returns the result of formatting `object` into the format specification `self`
# (see Kernel#sprintf for formatting details):
#
# "%05d" % 123 # => "00123"
#
# If `self` contains multiple substitutions, `object` must be an Array or Hash
# containing the values to be substituted:
#
# "%-5s: %016x" % [ "ID", self.object_id ] # => "ID : 00002b054ec93168"
# "foo = %{foo}" % {foo: 'bar'} # => "foo = bar"
# "foo = %{foo}, baz = %{baz}" % {foo: 'bar', baz: 'bat'} # => "foo = bar, baz = bat"
#
def %: (array[untyped] positional_args) -> String
| (hash[Symbol, untyped] named_args) -> String
| (untyped arg) -> String
# <!--
# rdoc-file=string.c
# - string * integer -> new_string
# -->
# Returns a new String containing `integer` copies of `self`:
#
# "Ho! " * 3 # => "Ho! Ho! Ho! "
# "Ho! " * 0 # => ""
#
def *: (int amount) -> String
# <!--
# rdoc-file=string.c
# - string + other_string -> new_string
# -->
# Returns a new String containing `other_string` concatenated to `self`:
#
# "Hello from " + self.to_s # => "Hello from main"
#
def +: (string other_string) -> String
# <!--
# rdoc-file=string.c
# - +string -> new_string or self
# -->
# Returns `self` if `self` is not frozen.
#
# Otherwise returns `self.dup`, which is not frozen.
#
def +@: () -> self
# <!--
# rdoc-file=string.c
# - -string -> frozen_string
# -->
# Returns a frozen, possibly pre-existing copy of the string.
#
# The returned String will be deduplicated as long as it does not have any
# instance variables set on it and is not a String subclass.
#
# String#dedup is an alias for String#-@.
#
def -@: () -> self
# <!--
# rdoc-file=string.c
# - string << object -> string
# -->
# Concatenates `object` to `self` and returns `self`:
#
# s = 'foo'
# s << 'bar' # => "foobar"
# s # => "foobar"
#
# If `object` is an Integer, the value is considered a codepoint and converted
# to a character before concatenation:
#
# s = 'foo'
# s << 33 # => "foo!"
#
# Related: String#concat, which takes multiple arguments.
#
def <<: (string | Integer str_or_codepoint) -> self
# <!--
# rdoc-file=string.c
# - string <=> other_string -> -1, 0, 1, or nil
# -->
# Compares `self` and `other_string`, returning:
#
# * -1 if `other_string` is larger.
# * 0 if the two are equal.
# * 1 if `other_string` is smaller.
# * `nil` if the two are incomparable.
#
#
# Examples:
#
# 'foo' <=> 'foo' # => 0
# 'foo' <=> 'food' # => -1
# 'food' <=> 'foo' # => 1
# 'FOO' <=> 'foo' # => -1
# 'foo' <=> 'FOO' # => 1
# 'foo' <=> 1 # => nil
#
def <=>: (string) -> (-1 | 0 | 1)
| (untyped) -> (-1 | 0 | 1)?
# <!--
# rdoc-file=string.c
# - string == object -> true or false
# - string === object -> true or false
# -->
# Returns `true` if `object` has the same length and content; as `self`; `false`
# otherwise:
#
# s = 'foo'
# s == 'foo' # => true
# s == 'food' # => false
# s == 'FOO' # => false
#
# Returns `false` if the two strings' encodings are not compatible:
# "\u{e4 f6 fc}".encode("ISO-8859-1") == ("\u{c4 d6 dc}") # => false
#
# If `object` is not an instance of String but responds to `to_str`, then the
# two strings are compared using `object.==`.
#
def ==: (untyped other) -> bool
# <!-- rdoc-file=string.c -->
# Returns `true` if `object` has the same length and content; as `self`; `false`
# otherwise:
#
# s = 'foo'
# s == 'foo' # => true
# s == 'food' # => false
# s == 'FOO' # => false
#
# Returns `false` if the two strings' encodings are not compatible:
# "\u{e4 f6 fc}".encode("ISO-8859-1") == ("\u{c4 d6 dc}") # => false
#
# If `object` is not an instance of String but responds to `to_str`, then the
# two strings are compared using `object.==`.
#
alias === ==
# <!--
# rdoc-file=string.c
# - string =~ regexp -> integer or nil
# - string =~ object -> integer or nil
# -->
# Returns the Integer index of the first substring that matches the given
# `regexp`, or `nil` if no match found:
#
# 'foo' =~ /f/ # => 0
# 'foo' =~ /o/ # => 1
# 'foo' =~ /x/ # => nil
#
# Note: also updates Regexp@Special+global+variables.
#
# If the given `object` is not a Regexp, returns the value returned by `object
# =~ self`.
#
# Note that `string =~ regexp` is different from `regexp =~ string` (see
# Regexp#=~):
#
# number= nil
# "no. 9" =~ /(?<number>\d+)/
# number # => nil (not assigned)
# /(?<number>\d+)/ =~ "no. 9"
# number #=> "9"
#
def =~: (Regexp regex) -> Integer?
| [T] (_MatchAgainst[self, T] object) -> T
interface _MatchAgainst[O, T]
def =~: (O string) -> T
end
# <!--
# rdoc-file=string.c
# - string[index] -> new_string or nil
# - string[start, length] -> new_string or nil
# - string[range] -> new_string or nil
# - string[regexp, capture = 0] -> new_string or nil
# - string[substring] -> new_string or nil
# -->
# Returns the substring of `self` specified by the arguments. See examples at
# [String Slices](rdoc-ref:String@String+Slices).
#
def []: (int start, ?int length) -> String?
| (range[int?] range) -> String?
| (Regexp regexp, ?MatchData::capture backref) -> String?
| (String substring) -> String?
# <!--
# rdoc-file=string.c
# - string[index] = new_string
# - string[start, length] = new_string
# - string[range] = new_string
# - string[regexp, capture = 0] = new_string
# - string[substring] = new_string
# -->
# Replaces all, some, or none of the contents of `self`; returns `new_string`.
# See [String Slices](rdoc-ref:String@String+Slices).
#
# A few examples:
#
# s = 'foo'
# s[2] = 'rtune' # => "rtune"
# s # => "fortune"
# s[1, 5] = 'init' # => "init"
# s # => "finite"
# s[3..4] = 'al' # => "al"
# s # => "finale"
# s[/e$/] = 'ly' # => "ly"
# s # => "finally"
# s['lly'] = 'ncial' # => "ncial"
# s # => "financial"
#
# String#slice is an alias for String#[].
#
def []=: [T < _ToStr] (int index, T replacement) -> T
| [T < _ToStr] (int start, int length, T replacement) -> T
| [T < _ToStr] (range[int?] range, T replacement) -> T
| [T < _ToStr] (Regexp regexp, T replacement) -> T
| [T < _ToStr] (Regexp regexp, MatchData::capture backref, T replacement) -> T
| [T < _ToStr] (String substring, T replacement) -> T
# <!--
# rdoc-file=string.c
# - ascii_only? -> true or false
# -->
# Returns `true` if `self` contains only ASCII characters, `false` otherwise:
#
# 'abc'.ascii_only? # => true
# "abc\u{6666}".ascii_only? # => false
#
def ascii_only?: () -> bool
# <!--
# rdoc-file=string.c
# - b -> string
# -->
# Returns a copy of `self` that has ASCII-8BIT encoding; the underlying bytes
# are not modified:
#
# s = "\x99"
# s.encoding # => #<Encoding:UTF-8>
# t = s.b # => "\x99"
# t.encoding # => #<Encoding:ASCII-8BIT>
#
# s = "\u4095" # => "䂕"
# s.encoding # => #<Encoding:UTF-8>
# s.bytes # => [228, 130, 149]
# t = s.b # => "\xE4\x82\x95"
# t.encoding # => #<Encoding:ASCII-8BIT>
# t.bytes # => [228, 130, 149]
#
def b: () -> String
# <!--
# rdoc-file=string.c
# - byteindex(substring, offset = 0) -> integer or nil
# - byteindex(regexp, offset = 0) -> integer or nil
# -->
# Returns the Integer byte-based index of the first occurrence of the given
# `substring`, or `nil` if none found:
#
# 'foo'.byteindex('f') # => 0
# 'foo'.byteindex('o') # => 1
# 'foo'.byteindex('oo') # => 1
# 'foo'.byteindex('ooo') # => nil
#
# Returns the Integer byte-based index of the first match for the given Regexp
# `regexp`, or `nil` if none found:
#
# 'foo'.byteindex(/f/) # => 0
# 'foo'.byteindex(/o/) # => 1
# 'foo'.byteindex(/oo/) # => 1
# 'foo'.byteindex(/ooo/) # => nil
#