@@ -49,8 +49,8 @@ Experimental
49
49
50
50
#### Syntax
51
51
52
- For fidx: ` res = [[stdlib_stringlist_type(module):fidx()]] (idx) ` .
53
- For bidx: ` res = [[stdlib_stringlist_type(module):bidx()]] (idx) ` .
52
+ For fidx: ` res = [[stdlib_stringlist_type(module):fidx(interface )]] (idx) `
53
+ For bidx: ` res = [[stdlib_stringlist_type(module):bidx(interface )]] (idx) `
54
54
55
55
#### Status
56
56
@@ -149,7 +149,7 @@ Inserts the string `string` _AT_ the index `idx`, so that the newly added elemen
149
149
150
150
#### Syntax
151
151
152
- ` call [[stdlib_stringlist_type(module):stringlist_type(type)]]%[[stdlib_stringlist_type(module ):insert_at(generic )]] (idx, string) `
152
+ ` call [[stdlib_stringlist_type(module):stringlist_type(type)]]%[[stringlist_type(type ):insert_at(bound )]] (idx, string) `
153
153
154
154
#### Status
155
155
@@ -205,7 +205,7 @@ Returns the string present currently at the index `idx` in a stringlist. If inde
205
205
206
206
#### Syntax
207
207
208
- ` res = [[stdlib_stringlist_type(module):stringlist_type(type)]]%[[stdlib_stringlist_type(module ):get(generic )]] (idx) `
208
+ ` res = [[stdlib_stringlist_type(module):stringlist_type(type)]]%[[stringlist_type(type ):get(bound )]] (idx) `
209
209
210
210
#### Status
211
211
@@ -267,7 +267,7 @@ Returns the number of elements present currently in the stringlist.
267
267
268
268
#### Syntax
269
269
270
- ` res = [[stdlib_stringlist_type(module):stringlist_type(type)]]%[[stdlib_stringlist_type(module ):len()]] () `
270
+ ` res = [[stdlib_stringlist_type(module):stringlist_type(type)]]%[[stringlist_type(type ):len(bound )]] () `
271
271
272
272
#### Status
273
273
@@ -319,7 +319,7 @@ Removes all elements from a stringlist.
319
319
320
320
#### Syntax
321
321
322
- ` call [[stdlib_stringlist_type(module):stringlist_type(type)]]%[[stdlib_stringlist_type(module ):clear()]] () `
322
+ ` call [[stdlib_stringlist_type(module):stringlist_type(type)]]%[[stringlist_type(type ):clear(bound )]] () `
323
323
324
324
#### Status
325
325
@@ -529,7 +529,7 @@ a [[stdlib_stringlist_type(module):stringlist_type(type)]].
529
529
530
530
#### Result value
531
531
532
- The result is an instance of ` stringlist_type ` .
532
+ The result is an instance of ` [[stdlib_stringlist_type(module): stringlist_type(type)]] ` .
533
533
534
534
#### Example
535
535
@@ -561,4 +561,4 @@ program demo_concatenate_operator
561
561
! first_stringlist <-- {"Element No. one", "#1", "#2", "Element No. one", "Element No. three", "Element No. four"}
562
562
563
563
end program demo_concatenate_operator
564
- ```
564
+ ```
0 commit comments