Handbook
Glossary
qualified-index ( str index -- str index' )
Vocabulary
help
.
html
Inputs
str
an
object
index
an
object
Outputs
str
an
object
index'
an
object
Definition
USING:
assocs
io.files
kernel
sequences
splitting
tools.completion
;
IN:
help.html
:
qualified-index
( str index -- str index' )
over
":"
split1
[
"qualified.idx"
dup
file-exists?
[
pick
generate-qualified-index
]
unless
load-index
completions
keys
concat
]
[
drop
f
]
if
[
append
]
unless-empty
;