Rebol 编程/删除
外观
< Rebol 编程
REMOVE series /part range
从一个序列中移除值,并在移除后返回。
REMOVE 是一个动作值。
- 系列 -- (类型:系列 端口 位集 无)
- /part -- 移除到给定长度或位置。
- 范围 -- (类型:数字 系列 端口 对)
remove: native[ {Removes value(s) from a series and returns after the remove.} series [series! port! bitset! none!] /part "Removes to a given length or position." range [number! series! port! pair!] ]