open:thread_last

->>

  • “Thread last” macro
  • Useful because seq functions take seq as last arg
  • Easy to comment out intermediate results

(apply str
  (interpose \space
    (filter allowed coll)))

(->> coll
     (filter allowed)
     (interpose \space)
     (apply str))


  • open/thread_last.txt
  • 마지막으로 수정됨: 2021/11/01 10:56
  • 저자 127.0.0.1