StreamDiscard.yqls 282 B

12345678910
  1. (
  2. #comment
  3. (let config (DataSource 'config))
  4. (let res_sink (DataSink 'result))
  5. (let list1 (AsList (Uint32 '1) (Uint32 '2) (Uint32 '3)))
  6. (let world (Write! world res_sink (Key) (Collect (Discard (Iterator list1))) '('('type))))
  7. (let world (Commit! world res_sink))
  8. (return world)
  9. )