Collect.yqls 387 B

1234567891011
  1. (
  2. #comment
  3. (let config (DataSource 'config))
  4. (let res_sink (DataSink 'result))
  5. (let list (AsList (String 'aaa) (String 'bbb) (String 'ccc)))
  6. (let world (Write! world res_sink (Key) (Collect (Iterator list)) '('('type))))
  7. (let world (Write! world res_sink (Key) (Collect (Collect (LazyList (LazyList (Collect list))))) '('('type))))
  8. (let world (Commit! world res_sink))
  9. (return world)
  10. )