Skip to content

Commit 09ae11e

Browse files
authored
Remove some internal ops from the TOC
1 parent 39f1057 commit 09ae11e

File tree

1 file changed

+4
-16
lines changed

1 file changed

+4
-16
lines changed

docs/ops.markdown

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -107,16 +107,13 @@
107107
* [radix](#radix)
108108
* [replace](#replace)
109109
* [rindex](#rindex)
110-
* [rindexfromend `jvm`](#rindexfromend-jvm)
111110
* [split](#split)
112111
* [sprintf](#sprintf)
113112
* [sprintfdirectives](#sprintfdirectives)
114113
* [sprintfaddargumenthandler](#sprintfaddargumenthandler)
115114
* [strfromcodes](#strfromcodes)
116115
* [strtocodes](#strtocodes)
117116
* [substr](#substr)
118-
* [substr2 `jvm`](#substr2-jvm)
119-
* [substr3 `jvm`](#substr3-jvm)
120117
* [tc](#tc)
121118
* [uc](#uc)
122119
* [unicmp_s](#unicmp_s)
@@ -1133,11 +1130,7 @@ Searching backwards through the `$haystack`, return the position at which
11331130
specified, otherwise start from the last position.
11341131

11351132
* `rindexfrom(str $haystack, str $needle, int $pos)` _Internal_
1136-
1137-
`rindex` is converted to this internal opcode by the compiler.
1138-
1139-
## rindexfromend `jvm`
1140-
* `rindexfromend(str $haystack, str $needle)` _Internal_
1133+
* `rindexfromend(str $haystack, str $needle)` `jvm` _Internal_
11411134

11421135
`rindex` is converted to this internal opcode by the compiler.
11431136

@@ -1202,15 +1195,10 @@ If `$length` is specified, only return that many characters. The
12021195
numbered variants required the args specified - the unnumbered
12031196
version may use either signature.
12041197

1205-
## substr2 `jvm`
1206-
* `substr2(str $str, int $position)` _Internal_
1207-
1208-
A JVM specific internal opcode for `substr`.
1209-
1210-
## substr3 `jvm`
1211-
* `substr3(str $str, int $position, int $length)` _Internal_
1198+
* `substr2(str $str, int $position)` `jvm` _Internal_
1199+
* `substr3(str $str, int $position, int $length)` `jvm` _Internal_
12121200

1213-
A JVM specific internal opcode for `substr`.
1201+
JVM specific internal opcodes for `substr`.
12141202

12151203
## tc
12161204
* `tc(str $str --> str)`

0 commit comments

Comments
 (0)