BT

Facilitating the Spread of Knowledge and Innovation in Professional Software Development

Write for InfoQ

Topics

Choose your language

InfoQ Homepage Presentations Understanding Core Clojure Functions

Understanding Core Clojure Functions

Bookmarks
45:35

Summary

Jonathan Graham presents how to implement our own versions of the Clojure functions reduce, count, filter, map and pmap. The pace starts gently for those with little Clojure experience to follow, but then dives deep to provide a full understanding.

Bio

Dr. Jonathan Graham has a passion for code, music, art and science. He has developed drugs for GlaxoSmithKline, live-coded Clojure during music gigs around the world, and has contributed to massive art installations. Jonathan works at 8th Light, and is a co-founder of Mined Minds.

About the conference

Software is Changing the World. QCon empowers software development by facilitating the spread of knowledge and innovation in the developer community. A practitioner-driven conference, QCon is designed for technical team leads, architects, engineering directors, and project managers who influence innovation in their teams.

Recorded at:

May 11, 2016

Hello stranger!

You need to Register an InfoQ account or or login to post comments. But there's so much more behind being registered.

Get the most out of the InfoQ experience.

Allowed html: a,b,br,blockquote,i,li,pre,u,ul,p

Community comments

  • Error on slides

    by Simon Polak,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    Looks like the my-reduce function from slides has an error in it. The recursive call should be (my-reduce f (f (first coll)) (rest coll)). Also this this function will blow the stack pretty soon :P (I'm only 7 mins in the talk though, he will probably point that out.)

  • Re: Error on slides

    by Simon Polak,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    Oh, my mistake. There should be a val in (f val (first coll)).

Allowed html: a,b,br,blockquote,i,li,pre,u,ul,p

Allowed html: a,b,br,blockquote,i,li,pre,u,ul,p

BT