Handbook
Glossary
parse-list-3 ( lines -- seq )
Vocabulary
ftp
.
client
.
listing-parser
Inputs
lines
an
object
Outputs
seq
an
object
Definition
USING:
accessors
combinators
kernel
math.parser
sequences
;
IN:
ftp.client.listing-parser
:
parse-list-3
( lines -- seq )
[
<remote-file>
swap
{
[
0
swap
nth
parse-permissions
]
[
1
swap
nth
string>number
>>links
]
[
2
swap
nth
>>name
]
}
cleave
]
map
;