JanetDocsPlaygroundI'm feeling luckyGitHub sign in

tabseq



    macro
    boot.janet on line 616, column 1

    (tabseq head key-body & value-body)

    Similar to `loop`, but accumulates key value pairs into a table. 
    See `loop` for details.


1 exampleSign in to add an example
Loading...
(tabseq [i :in (range 97 100)]
  i (string/from-bytes i))
# =>
@{97 "a"
  98 "b"
  99 "c"}
sogaiuPlayground