<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>On Clojure &#187; Libraries</title>
	<atom:link href="http://onclojure.com/category/libraries/feed/" rel="self" type="application/rss+xml" />
	<link>http://onclojure.com</link>
	<description>A blog about everything Clojure</description>
	<lastBuildDate>Thu, 24 May 2012 05:49:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='onclojure.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>On Clojure &#187; Libraries</title>
		<link>http://onclojure.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://onclojure.com/osd.xml" title="On Clojure" />
	<atom:link rel='hub' href='http://onclojure.com/?pushpress=hub'/>
		<item>
		<title>Reusable method implementations for deftypes</title>
		<link>http://onclojure.com/2010/08/26/reusable-method-implementations-for-deftypes/</link>
		<comments>http://onclojure.com/2010/08/26/reusable-method-implementations-for-deftypes/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 14:55:23 +0000</pubDate>
		<dc:creator>khinsen</dc:creator>
				<category><![CDATA[Libraries]]></category>

		<guid isPermaLink="false">http://onclojure.com/?p=141</guid>
		<description><![CDATA[One of the big new features in the recently released Clojure 1.2 is the possibility of defining new types having data field and implementing methods conforming to interfaces. Clojure provides two levels of user-defined types: the basic deftype, for defining everything from scratch, and defrecord, which adds method implementations for a couple of interfaces (some [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onclojure.com&#038;blog=5872423&#038;post=141&#038;subd=onclojure&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One of the big new features in the recently released Clojure 1.2 is the possibility of defining new types having data field and implementing methods conforming to interfaces. Clojure provides two levels of user-defined types: the basic <code>deftype</code>, for defining everything from scratch, and <code>defrecord</code>, which adds method implementations for a couple of interfaces (some from Java, some from Clojure) that make the new type act like a Clojure map object.</p>
<p>But what if you want something in between? For example, to make your type a good Clojure citizen, you want it to accept metadata (a feature provided by <code>defrecord</code>), but you don&#8217;t want all the map stuff. Or perhaps you want a map-like interface for the fields of your type, but without the possibility to extend the map with new keys. Clojure doesn&#8217;t help you out of the box; your only choice is to re-implement the required interfaces yourself, or borrow the code from Clojure&#8217;s <code>defrecord</code>, if you are up to deciphering how it works. There is no way to <em>reuse</em> method implementations.</p>
<p>This also becomes a problem if you want to reuse your own method implementations. You&#8217;d need to write your methods outside of any <code>deftype</code>, possibly in a way that allows parametrization, and then insert the code into a <code>deftype</code> form. You might be tempted to use macros for this, but that won&#8217;t work: macros are expanded as part of the evaluation of forms, but inside a <code>deftype</code> form, almost nothing gets evaluated. The only place where macros can be put to use inside a <code>deftype</code> is inside the code of the individual methods.</p>
<p>The library <a href="http://code.google.com/p/clj-methods-a-la-carte/">methods-a-la-carte</a> (also available at <a href="http://clojars.org/methods-a-la-carte">clojars</a>) comes to your rescue. It defines a templating system, similar in spirit to syntax-quote but with some important differences, that lets you define parametrized templates for methods and sets of methods. It also defines an enhanded version of <code>deftype</code>, called <code>deftype+</code>, which expands such templates inside its body. Finally, it comes with a small collection of predefined method implementations, corresponding to the features of defrecord but available individually.</p>
<p>First, a simple example of a type that reuses just the metadata protocol implementation:</p>
<pre>
(ns example
  (:use [methods-a-la-carte.core <img src='http://s1.wp.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> nly (deftype+)])
  (:use [methods-a-la-carte.implementations <img src='http://s1.wp.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> nly (metadata keyword-lookup)]))

(deftype+ foo
  [field1 field2 __meta]
  ~@(metadata __meta))

(def a-foo (with-meta (new foo 1 2) {:a :b}))
(prn (meta a-foo))
</pre>
<p>This type has two plain fields (named rather unimaginatively <code>field1</code> and <code>field2</code>), and a special field <code>__meta</code> for storing the metadata. This happens to be the name that Clojure&#8217;s <code>defrecord</code> uses for the metadata field, but this is unimportant. What <em>is</em> important is that the name begins with a double underscore, as deftype handles such fields specially: they are omitted from the constructor argument list (to the best of my knowledge this is an undocumented feature of deftype).  Whatever name you choose, you have to give the same name as a parameter to the <code>metadata</code> template.</p>
<p>Let&#8217;s add another feature to our type: keyword lookup:</p>
<pre>
(deftype+ foo
  [field1 field2 __meta]
  ~@(metadata __meta)
  ~@(keyword-lookup field1 field2))

(def a-foo (new foo 1 2))
(prn (:field1 a-foo))
(prn (:field2 a-foo))
</pre>
<p>The parameters to the template keyword-lookup are the field names for which you want keyword lookup. It can be any subset of the type&#8217;s fields.</p>
<p>By now you might be curious to know how the templates are defined, for example in order to define your own. Here&#8217;s the metadata template, the simplest one in the collection:</p>
<pre>
(defimpl metadata [fld]
  clojure.lang.IObj
  (meta [this#]
    ~fld)
  (withMeta [this# m#]
    (new ~this-type ~@(replace {'~fld 'm#} '~this-fields))))
</pre>
<p>This template has one parameter, <code>fld</code>, naming the field that stores the metadata. Everything after the parameter list is the content of the template, with a tilde standing for expressions that are replaced by their values, just as with syntax-quote templates. Another similarity with syntax-quote is that symbols ending with # are replaced by freshly generated unique symbols.</p>
<p>There are two major differences between the new templating mechanism and the well-known syntax-quote:</p>
<ol>
<li>Symbols are not namespace-resolved. This is important because, contrary to the use of templates in macro definition, namespace resolution is not appropriate for most of the symbols in a method template (method names, method arguments, interface and protocol names).</li>
<li>Symbols are not looked up in the lexical environment (there is none), but first in a dynamic environment and then in the namespace of the template definition.</li>
</ol>
<p>The dynamic environment is initialized by <code>deftype+</code> with the following values:</p>
<ul>
<li><code>this-type</code>: the symbol naming the type being defined</li>
<li><code>this-fields</code>: the vector of field names supplied to <code>deftype+</code></li>
</ul>
<p>The above method template used both these values in its code for <code>withMeta</code>. Here is what the first example (type foo with just the metadata implementation) expands to:</p>
<pre>
(deftype
  foo
  [field1 field2 __meta]
  clojure.lang.IObj
  (meta [this#2515] __meta)
  (withMeta [this#2515 m#2516] (new foo field1 field2 m#2516)))
</pre>
<p>As with all templating mechanism, including syntax-quote, the interplay of evaluation rules, substitution rules, and quoting requires some experience before it becomes to seem natural. Be prepared for some head-scratching as you write your first templates. Simply using them should be much easier, and probably sufficient for most users. Feedback welcome!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onclojure.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onclojure.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onclojure.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onclojure.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/onclojure.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/onclojure.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/onclojure.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/onclojure.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onclojure.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onclojure.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onclojure.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onclojure.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onclojure.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onclojure.wordpress.com/141/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onclojure.com&#038;blog=5872423&#038;post=141&#038;subd=onclojure&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://onclojure.com/2010/08/26/reusable-method-implementations-for-deftypes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/305e4cf66ef1179f7e95981b1520ba1a?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">khinsen</media:title>
		</media:content>
	</item>
		<item>
		<title>Computing with units and dimensions</title>
		<link>http://onclojure.com/2010/03/23/computing-with-units-and-dimensions/</link>
		<comments>http://onclojure.com/2010/03/23/computing-with-units-and-dimensions/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 11:28:33 +0000</pubDate>
		<dc:creator>khinsen</dc:creator>
				<category><![CDATA[Libraries]]></category>

		<guid isPermaLink="false">http://onclojure.com/?p=115</guid>
		<description><![CDATA[Many computer programs work with data that represents quantities. Examples are numerous: the age of a person, the weight of a parcel, the duration of a video clip, the distance between two cities, etc. Usually quantities are simply represented by numbers, because numbers are very easy to handle in popular programming languages. However, quantities are [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onclojure.com&#038;blog=5872423&#038;post=115&#038;subd=onclojure&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Many computer programs work with data that represents quantities. Examples are numerous: the age of a person, the weight of a parcel, the duration of a video clip, the distance between two cities, etc. Usually quantities are simply represented by numbers, because numbers are very easy to handle in popular programming languages. However, quantities are not numbers: two years is not the same as the number two. A quantity is defined by a <em>magnitude</em> (which is a number) and a <em>unit</em>. The same quantity can be represented by different magnitude-unit pairs. For example, one minute is the same quantity as sixty seconds. The quality being measured by a unit is called its <em>dimension</em>. Time, length, and weight are examples of dimensions.</p>
<p>There are a few good reasons to represent quantities by magnitude-unit pairs rather than by plain numbers:</p>
<ul>
<li>When quantities are represented by numbers, the units become a matter of convention, written down in a comment (if at all) rather than in the program code. This makes mistakes rather likely, with possibly serious consequences: NASA&#8217;s <a href="http://en.wikipedia.org/wiki/Mars_Climate_Orbiter">Mars Climate Orbiter</a> crashed because of different units being used in different parts of the software that was used to calculate its flight trajectory.</li>
<li>With just numbers, it is not even possible to verify that a quantity passed into a function has the right dimension. With an additional unit, such a check is very easy to do.</li>
<li>The unit and dimension information provides additional documentation to the human reader, and aids in debugging.</li>
</ul>
<p>A number of libraries for various programming languages therefore implement units, dimensions, and quantities, with the associated arithmetic and comparison operators and sometimes also mathematical functions. Clojure recently joined the crowd: the <code>units</code> library is available at <a href="http://clojars.org/units">Clojars.org</a> and the source code is hosted by <a href="http://code.google.com/p/clj-units/">Google Code</a>. In this post, I describe how the library works and give a few examples.</p>
<p>First, a simple example for illustration. Like any Clojure script, the first thing to do is to set up the namespace with all the stuff we need:</p>
<pre>
(clojure.core/use 'nstools.ns)
(ns+ unit-demo
  (:clone nstools.generic-math)
  (:from units dimension? in-units-of)
  (:require [units.si :as si]))
</pre>
<p>This looks rather complicated, so it deserves some explanation. We will want to be able to calculate with quantities, units, and dimensions, in particular do arithmetic (+ &#8211; * /) and comparisons ( min max) on quantities. Clojure&#8217;s built-in arithmetic and comparison functions work only on numbers, so they are not useful here. In <code>clojure.contrib.generic</code>, there are <em>generic</em> versions of these operations, meaning that they can be defined for any datatype for which they make sense. To achieve this goal, they are implemented as multimethods, which implies some bookkeeping overhead that reduces performance. In fact, it is for performance reasons that Clojure&#8217;s standard arithmetic functions are <em>not</em> generic.</p>
<p>Constructing a nice namespace for generic arithmetic using Clojure&#8217;s standard namespace management tools is a bit cumbersome: we&#8217;d have to use an explicit <code>:refer-clojure</code> clause in <code>ns</code> in order to exclude the standard arithmetic functions, and then have a<br />
lengthy <code>:use</code> clause for adding the generic versions from the various submodules of <code>clojure.contrib.generic</code>. An easier way is to use the <a href="http://onclojure.com/2010/02/17/managing-namespaces/">nstools library</a> which defines a suitable namespace template that we can simply clone. We then add the dimension-checking predicate <code>dimension?</code> and the conversion function <code>in-units-of</code> from the <code>units</code> library and the shorthand <code>si</code> for referring to the namespace that defines the SI unit system that we will use.</p>
<p>Now we can start doing something useful. The following function calculates the force exerted by a spring of force constant <code>k</code> that has been compressed or extended by a displacement <code>x</code>:</p>
<pre>
(defn spring
  [k]
  {:pre [(dimension? (/ si/force si/length) k)]}
  (fn [x]
    {:pre [(si/length? x)]}
    (- (* k x))))
</pre>
<p>The basic code looks just as if we had written it for use with plain numbers. The only difference are the preconditions that verify that the arguments <code>k</code> and <code>x</code> have the right dimensions: length for <code>x</code>, force constant for <code>k</code>. The test for length is simpler, because for all dimensions that have been assigned a name in the definition of the unit system, there is a direct test predicate, such as <code>si/length?</code>. There is no predefined dimension for &#8220;force divided by length&#8221;, so we have to use the generic predicate <code>dimension?</code> and construct the dimension arithmetically. The only operations defined on dimensions are multiplication and division, the rest (addition/subtraction, comparison) would not make sense.</p>
<p>Let&#8217;s use our function <code>spring</code>:</p>
<pre>
(def a-spring (spring (/ (* 5 si/N) si/cm)))
(prn (a-spring (si/cm 1/2)))
</pre>
<p>The first line defines a spring with a force constant of 5 N/cm. You can see in the expression that calculates it that units can be used like quantities in artithmetic. The unit &#8220;Newton&#8221; behaves just like the quantity &#8220;1 Newton&#8221;. However, these two values are represented differently internally, for a good reason that I will explain a bit later. The second line evaluates the force exerted by the spring when elongated by 1/2 cm. It shows another way to construct a quantity from unit an magnitude: units can be called as functions, with the magnitude supplied as the argument, returning a quantity.</p>
<p>The last line produces the output</p>
<pre>
#:force{-5/2 N}
</pre>
<p>The result thus has the dimension &#8220;force&#8221;, the magnitude &#8220;-5/2&#8243; and the unit &#8220;Newton&#8221;. The dimension can be shown because it is a named dimension defined in the SI unit system. Otherwise the computer could not have guessed the name of the dimension. Let&#8217;s see what happens when we print a force constant:</p>
<pre>
(prn (/ (* 5 si/N) si/cm))
</pre>
<p>The output is</p>
<pre>
#:quantity{5 100.kg.s-2}
</pre>
<p>No dimension name, no unit name: the magnitude is 5, the unit is 100 kg/s^2, and it is expressed in SI base units plus a prefactor.</p>
<p>Let&#8217;s look at some more examples of unit arithmetic in the following REPL protocol:</p>
<pre>
unit-demo&gt; (+ (si/m 1) (si/km 3))
#:length{3001 m}
unit-demo&gt; (+ (si/km 3) (si/m 1))
#:length{3001/1000 km}
unit-demo&gt; (= (+ (si/m 1) (si/km 3)) (+ (si/km 3) (si/m 1)))
true
</pre>
<p>This shows how units are converted in arithmetic: the result has the unit of the first argument. However, exchanging the argument still yields a result that is equal to the original one, as indeed &#8220;1 km&#8221; and &#8220;1000 m&#8221; are the same quantity.</p>
<p>Next, some more complicated examples: we calculate the kinetic energy of a car:</p>
<pre>
unit-demo&gt; (/ (si/km 100) si/h)
#:velocity{100 5/18.m.s-1}
unit-demo&gt; (let [v (/ (si/km 100) si/h)
		 m (si/kg 800)]
		 (* 1/2 m v v))
#:energy{4000000 25/324.m2.kg.s-2}
unit-demo&gt; (let [v (/ (si/km 100) si/h)
		 m (si/kg 800)]
		 (in-units-of si/J (* 1/2 m v v)))
#:energy{25000000/81 J}
</pre>
<p>The last line shows how to convert a quantity to a different unit. Note that the result is always equal to the input quantity, only the representation changes.</p>
<p>At some point, one inevitable has to communicate with the number-only world, usually for I/O, or for plotting. So how do we convert a quantity to a number? It should be clear that this operation implies the choice of a unit. The simplest solution is to divide the quantity by the desired unit: the result will be dimensionless and thus a plain number:</p>
<pre>
unit-demo&gt; (/  (a-spring (si/cm 1/2))  si/mN)
-2500
</pre>
<p>Another approach would be to convert to the desired units using <code>in-units-of</code> and then extracting the magnitude using the function <code>magnitude</code> from the <code>units</code> library:</p>
<pre>
unit-demo&gt; (units/magnitude (in-units-of si/mN (a-spring (si/cm 1/2))))
-2500
</pre>
<p>At this point it should be clear that the <code>units</code> library defines three datatypes: dimensions, units, and quantities. It is less obvious that dimensions and units (and thus indirectly quantities) refer to a <em>unit system</em>. Without a unit system, the computer could not know that the quotient of a length and a time is a velocity, for example. Nor could it know that &#8220;Newton&#8221; is just a convenient name for &#8220;m kg/s^2&#8243;. A unit system defines <em>base dimensions</em> and <em>base units</em>. The <a href="http://en.wikipedia.org/wiki/SI_system">SI system</a> (SI = Système International) that is today used all over the world in science and engineering, as well as in daily life in most countries, defines seven base dimensions and associated units:</p>
<ul>
<li>  length              (meter,    m)</li>
<li>  mass                (kilogram,  kg)</li>
<li>  time                (second,    s)</li>
<li>  electric current    (ampere,    A)</li>
<li>  temperature         (kelvin,    K)</li>
<li>  luminous intensity  (candela,   cd)</li>
<li>  amount of substance (mole,      mol)</li>
</ul>
<p>Neither the choice of these particular dimensions nor even the choice of seven base dimensions is obvious. One could very well use the electric charge instead of the electric current, for example. And one could very well not have the dimension &#8220;amount of substance&#8221; at all. The choices made for the SI system reflect the state of the art in <a href="http://en.wikipedia.org/wiki/Metrology">metrology</a>, taking into account what can and what cannot be measured with high accuracy.</p>
<p>All dimensions other than the base dimensions are expressed as products of powers of the base units. For example, velocity is length^1  time^-1, and volume is length^3. The SI system is constructed to make sure that all powers are integers, but this is not true e.g. for the older <a href="http://en.wikipedia.org/wiki/Centimetre_gram_second_system_of_units">cgs system</a>, which has fractional powers for dimensions related to electricity.  According to the principles of <a href="http://en.wikipedia.org/wiki/Dimensional_analysis">dimensional analysis</a>, a dimension is in fact nothing else but a name for a collection of powers (seven integers for the SI system). Metrological reality is a bit more complicated because there can be multiple dimensions with the same set of exponents. For example, in the SI system, both frequency (measured in cycles per second) and radioactivity (measured in decays per second) are equivalent to time^-1, because neither &#8220;cycle&#8221; nor &#8220;decay&#8221; has its own dimension. The <code>units</code> library takes this into account and makes a distinction between frequency, radioactivity, and 1/time. The first two are not compatible with each other, meaning that you can&#8217;t add 1 Bq and 5 Hz. However, either one is compatible with 1/s, so you can add 1 Bq and 5/s. This feature requires that dimensions be represented by a specific data type; otherwise a list of exponents would be sufficient.</p>
<p>Units are handled much like dimensions: each base dimension has a base unit, and each non-base unit is defined as a product of powers of base units, plus a numerical prefactor. Quantities are then made up of a unit and a magnitude, which is typically a number. It is not strictly necessary to make the distinction between units and quantities, as in fact any quantity can be used as a unit. There are libraries around that use a single representation for both. However, there are two advantages to keeping the distinction:</p>
<ol>
<li>The <code>units</code> library permits magnitudes of quantities to be values of any type that implements generic arithmetic, whereas unit prefactors must be numbers. It it thus possible to use matrices as magnitudes, provided all elements have the same unit. This permits efficient implementations of many algorithms while still profiting from dimension checking and unit conversion.</li>
<li>Without specific unit objects, every quantity would be represented as a prefactor with respect to a product of powers of the base units. The information of what unit the quantity was initially represented in is lost. While this doesn&#8217;t matter from the point of view of dimensional analysis, it does matter from a numerical point of view. For example, quantities at the atomic scale would have very small prefactors when expressed in terms of SI base units. With magnitudes expressed as floating-point values, there is thus a risk of underflow in unit arithmetic. It is in general preferable to keep quantities in their original units and apply conversion only when requested or when inevitable (such as in addition of two quantities).</li>
</ol>
<p>To close this brief description of the design decisions behind the <code>units</code> library, a few words about temperatures. I have decided not to include support for temperature conversion in the initial versions of the library, and I am not sure if I will ever add it. Temperature is special in that the scales we use in daily life (nowadays mostly centigrades and Fahrenheit) have an arbitrarily chosen zero point that does not coincide with the &#8220;natural&#8221; zero point of temperature, which corresponds to the lowest possible energetic state of a system. Allowing for such units defined with an offset implies enormous complications: a distinction must be made between &#8220;differential&#8221; and &#8220;absolute&#8221; units, and arithmetic must be defined carefully to make sure that absolute units can be used only in addition with a differential unit or in subtraction. I don&#8217;t think that introducing that amount of complexity is justified, considering that daily-life temperatures are rarely combined in computations with quantities of other dimensions.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onclojure.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onclojure.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onclojure.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onclojure.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/onclojure.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/onclojure.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/onclojure.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/onclojure.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onclojure.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onclojure.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onclojure.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onclojure.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onclojure.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onclojure.wordpress.com/115/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onclojure.com&#038;blog=5872423&#038;post=115&#038;subd=onclojure&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://onclojure.com/2010/03/23/computing-with-units-and-dimensions/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/305e4cf66ef1179f7e95981b1520ba1a?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">khinsen</media:title>
		</media:content>
	</item>
		<item>
		<title>Managing namespaces</title>
		<link>http://onclojure.com/2010/02/17/managing-namespaces/</link>
		<comments>http://onclojure.com/2010/02/17/managing-namespaces/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 14:38:24 +0000</pubDate>
		<dc:creator>khinsen</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Libraries]]></category>

		<guid isPermaLink="false">http://onclojure.com/?p=80</guid>
		<description><![CDATA[One aspect of Clojure that I have not been quite happy with is namespace management. In a bigger project that consists of several namespaces, I usually end up having nearly identical :use and :require clauses in the initial ns form. These clauses set up the project-specific set of symbols that I want to work with. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onclojure.com&#038;blog=5872423&#038;post=80&#038;subd=onclojure&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One aspect of Clojure that I have not been quite happy with is namespace management. In a bigger project that consists of several namespaces, I usually end up having nearly identical <tt>:use</tt> and <tt>:require</tt> clauses in the initial <tt>ns</tt> form. These clauses set up the project-specific set of symbols that I want to work with. Individual namespaces sometimes add symbols for their specific needs, of course. What bothers me is that I have to repeat the <tt>:use</tt> and <tt>:require</tt> clauses, often with <tt>:exclude</tt> or <tt>:</tt><tt>only</tt> options with many symbols, in every single namespace. And of course I often forget a copy when updating my symbol set. Therefore I decided to look at how namespaces work in more detail, and try to find a better way to manage symbols in namespaces.</p>
<p>For those who don&#8217;t want to read all the explanations, my solution (still a bit experimental, for the moment), is in my <a href="http://code.google.com/p/clj-nstools/">nstools library</a>, which is also on <a href="http://clojars.org/nstools">Clojars</a>.</p>
<p>As most Clojure programmers know, a namespace maps symbols to vars. Vars are mutable storage locations with well defined concurrency semantics, but this is not the topic of this post &#8211; see the <a href="http://clojure.org/vars">documentation</a> for details. But a namespace is not a simple map. To start with, a namespace stores two maps: one from symbols to their values, and one from namespace aliases to namespaces. Aliases are usually created using a <tt>(:require ... :as ...)</tt> clause in the <tt>ns</tt> form that opens a namespace. They are used in namespace-qualified symbols before the slash, as a shorthand for the full namespace name. Since aliases are used before the slash and namespace-local symbols are used after the slash (or in an unqualified name with no slash at all), there is no conflict between the two. It is thus possible to use the same symbol both as an alias and as a regular symbol in the same namespace.</p>
<p>The main symbol-to-value map is also not quite as simple as it seems. The values it stores are not always vars. A symbol can also have a Java class as its value. A symbol-to-class entry is created using <tt>import</tt> or using the <tt>:import</tt> clause in <tt>ns</tt>. A submap containing only the symbol-to-class entries of the namespace map can be obtained by calling <tt>ns-imports</tt>. Finally, the symbol-to-var entries can be divided up into two categories: those that refer to vars in the same namespace (created by <tt>def</tt> and the many macros based on it), and those that refer to vars in some other namespace. The latter are created with <tt>use</tt> or the <tt>:use</tt> clause of <tt>ns</tt>, and the submap of these symbols can be obtained by calling <tt>ns-refers</tt>. The first category, a submap of symbols to vars defined in the same namespace, is the return value of <tt>ns-interns</tt>.</p>
<p>There is one more subtlety, and an undocumented one as far as I know: Two symbols, <tt>ns</tt> and <tt>in-ns</tt>, are put in the namespace map when the namespace is created, and can&#8217;t be removed (using <tt>ns-unmap</tt>) nor redefined. This makes sense because they refer to a macro and a function needed to create new namespaces and to switch namespaces. Having them in every namespace (referring to vars in <tt>clojure.core</tt>) ensures that it is always possible to get out of the current namespace.</p>
<p>Next, let&#8217;s look at how namespaces are set up in Clojure. Pretty much all the namespace management functionality is available through the standard <tt>ns</tt> form with its various clauses and options. The one exception is removing symbols, which can be done only by calling <tt>ns-unmap</tt> explicitly. The <tt>ns</tt> form first switches to the namespace it defines, creating it if necessary. The second step is to add references to all public vars defined in namespace <tt>clojure.core</tt>. This step can be modified by specifying a <tt>:refer-clojure</tt> clause that lists the symbols to include or exclude. Then <tt>ns</tt> goes through its optional clauses. A <tt>:require</tt> clause loads another namespace, but doesn&#8217;t normally modify the namespace under construction. Only if the option <tt>:as</tt> is specified, there is an impact on the namespace: an alias is added. A <tt>:use</tt> clause first does a <tt>:require</tt> and then adds all of the newly loaded namespace&#8217;s public vars to the symbol table of the current namespace. The options <tt>:exclude</tt> and <tt>:</tt><tt>only</tt> can be used to select a subset of the public vars. Finally, an <tt>:import</tt> clause adds Java classes to the namespace&#8217;s symbol table.</p>
<p>The most dangerous, but also most convenient, <tt>ns</tt> clause is <tt>:use</tt>. In its basic form, it adds all public vars of another namespace to the symbol table of the namespace under construction. And once those symbols are there, they cannot be redefined in the namespace, except by first removing them using <tt>ns-unmap</tt>. The problem is that &#8220;all public vars of namespace X&#8221; is not something under your control. It&#8217;s the author of the <i>other</i> namespace who decides which symbols you get in <i>your</i> namespace. The next release of namespace X may well have a few more public definitions, and if those are in conflict with your own definitions, then your module will fail to load. Therefore, as a security measure, you should use the <tt>:</tt><tt>only</tt> option of <tt>:use</tt> with all namespaces that are out of your control, listing explicitly the definitions that you need, in order to be certain that you don&#8217;t get more than you expect. Unfortunately, this includes <tt>clojure.core</tt>, which also grows with every new Clojure release. To be on the safe side, you should have a <tt>:refer-clojure</tt> clause with the <tt>:</tt><tt>only</tt> in every namespace that you intend to maintain for a longer time.</p>
<p>So far for what I have, but what do I want? I&#8217;d like to be able to set up a namespace to my taste and then be able to use it as a basis for deriving other namespaces. With that possibility, I would define a master namespace once per project, being careful to always use the <tt>:</tt><tt>only</tt> option in <tt>:refer-clojure</tt> and <tt>:use</tt>. All other namespaces in my project would then be based on this master namespace and only add or remove symbols for their specific local needs.</p>
<p>To implement this functionality, I added three new clauses to <tt>ns</tt>. The <tt>:like</tt> clause takes a namespace as its only argument and adds all symbols from that namespace that refer to vars in yet another namespace to the current namespace (make sure you read this properly; there are at least three namespaces involved here!). The <tt>:clone</tt> clause does the same but also adds the symbols defined in the other namespace. In other words, <tt>:clone</tt> is equivalent to <tt>:like</tt> followed by <tt>:use</tt>. The third new clause is <tt>:remove</tt>, whose arguments are symbols to be removed from the namespace. It is explicitly allowed to &#8220;remove&#8221; symbols that aren&#8217;t there. This creates another way to protect one&#8217;s namespace against future extensions in namespaces that are <tt>:use</tt>d: simply add all symbols defined in your namespace to the <tt>:remove</tt> list.</p>
<p>The above paragraph contains a small lie: I didn&#8217;t add anything to <tt>ns</tt>, of course, though that&#8217;s what I would have liked to do. I made a copy of <tt>ns</tt> and added the new clauses to the copy. The copy is in namespace <tt>nstools.ns</tt> and it&#8217;s called <tt>ns+</tt> &#8211; as explained above, I cannot call it <tt>ns</tt>. So to use nstools, you have to replace <tt>ns</tt> by <tt>ns+</tt> and put a <tt>(use 'nstools.ns)</tt> before it.</p>
<p>As I said, this library is still a bit experimental. I am not sure for example if both <tt>:like</tt> and <tt>:clone</tt> are necessary. And perhaps <tt>:remove</tt> should be called <tt>:exclude</tt>. Of course, any feedback is welcome!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onclojure.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onclojure.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onclojure.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onclojure.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/onclojure.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/onclojure.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/onclojure.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/onclojure.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onclojure.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onclojure.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onclojure.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onclojure.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onclojure.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onclojure.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onclojure.com&#038;blog=5872423&#038;post=80&#038;subd=onclojure&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://onclojure.com/2010/02/17/managing-namespaces/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/305e4cf66ef1179f7e95981b1520ba1a?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">khinsen</media:title>
		</media:content>
	</item>
		<item>
		<title>A monad tutorial for Clojure programmers (part 4)</title>
		<link>http://onclojure.com/2009/04/24/a-monad-tutorial-for-clojure-programmers-part-4/</link>
		<comments>http://onclojure.com/2009/04/24/a-monad-tutorial-for-clojure-programmers-part-4/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 16:10:24 +0000</pubDate>
		<dc:creator>khinsen</dc:creator>
				<category><![CDATA[Libraries]]></category>

		<guid isPermaLink="false">http://onclojure.com/?p=51</guid>
		<description><![CDATA[In this fourth and last part of my monad tutorial, I will write about monad transformers. I will deal with only one of them, but it&#8217;s a start. I will also cover the probability monad, and how it can be extended using a monad transformer. Basically, a monad transformer is a function that takes a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onclojure.com&#038;blog=5872423&#038;post=51&#038;subd=onclojure&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In this fourth and last part of my monad tutorial, I will write about monad transformers. I will deal with only one of them, but it&#8217;s a start. I will also cover the probability monad, and how it can be extended using a monad transformer.</p>
<p>Basically, a monad transformer is a function that takes a monad argument and returns another monad. The returned monad is a variant of the one passed in to which some functionality has been added. The monad transformer defines that added functionality. Many of the  common monads that I have presented before have monad transformer analogs that add the monad&#8217;s functionality to another monad. This makes monads modular by permitting client code to assemble monad building blocks into a customized monad that is just right for the task at hand.</p>
<p>Consider two monads that I have discussed before: the maybe monad and the sequence monad. The maybe monad is for computations that can fail to produce a valid value, and return nil in that case. The sequence monad is for computations that return multiple results, in the form of monadic values that are sequences. A monad combining the two can take two forms: 1) computations yielding multiple results, any of which could be <code>nil</code> indicating failure 2) computations yielding either a sequence of results or <code>nil</code> in the case of failure. The more interesting combination is 1), because 2) is of little practical use: failure can be represented more easily and with no additional effort by returning an empty result sequence.</p>
<p>So how can we create a monad that puts the maybe monad functionality inside sequence monad values? Is there a way we can reuse the existing implementations of the maybe monad and the sequence monad? It turns out that this is not possible, but we can keep one and rewrite the other one as a monad transformer, which we can then apply to the sequence monad (or in fact some other monad) to get the desired result. To get the combination we want, we need to turn the maybe monad into a transformer and apply it to the sequence monad.</p>
<p>First, as a reminder, the definitions of the maybe and the sequence monads:</p>
<pre>
(defmonad maybe-m
   [m-zero   nil
    m-result (fn [v] v)
    m-bind   (fn [mv f]
               (if (nil? mv) nil (f mv)))
    m-plus   (fn [&amp; mvs]
               (first (drop-while nil? mvs)))
    ])

(defmonad sequence-m
   [m-result (fn [v]
               (list v))
    m-bind   (fn [mv f]
               (apply concat (map f mv)))
    m-zero   (list)
    m-plus   (fn [&amp; mvs]
               (apply concat mvs))
    ])
</pre>
<p>And now the definition of the maybe monad transformer:</p>
<pre>
(defn maybe-t
  [m]
  (monad [m-result (with-monad m m-result)
          m-bind   (with-monad m
                     (fn [mv f]
                       (m-bind mv
                               (fn [x]
                                 (if (nil? x)
                                   (m-result nil)
                                   (f x))))))
          m-zero   (with-monad m m-zero)
          m-plus   (with-monad m m-plus)
          ]))
</pre>
<p>The real definition in clojure.algo.monads is a bit more complicated, and I will explain the differences later, but for now this basic version is good enough. The combined monad is constructed by</p>
<pre>
(def maybe-in-sequence-m (maybe-t sequence-m))
</pre>
<p>which is a straightforward function call, the result of which is a monad. Let&#8217;s first look at what <code>m-result</code> does. The <code>m-result</code> of <code>maybe-m</code> is the identity function, so we&#8217;d expect that our combined monad <code>m-result</code> is just the one from <code>sequence-m</code>. This is indeed the case, as <code>(with-monad m m-result) </code>returns the <code>m-result</code> function from monad <code>m</code>. We see the same construct for <code>m-zero</code> and <code>m-plus</code>, meaning that all we need to understand is <code>m-bind</code>.</p>
<p>The combined <code>m-bind</code> calls the <code>m-bind</code> of the base monad (<code>sequence-m</code> in our case), but it modifies the function argument, i.e. the function that represents the rest of the computation. Before calling it, it first checks if its argument would<br />
be <code>nil</code>. If it isn&#8217;t, the original function is called, meaning that the combined monad behaves just like the base monad as long as no computation ever returns <code>nil</code>. If there is a <code>nil</code> value, the maybe monad says that no further computation should take place and that the final result should immediately be <code>nil</code>. However, we can&#8217;t just return <code>nil</code>, as we must return a valid monadic value in the combined monad (in our example, a sequence of possibly-<code>nil</code> values). So we feed nil into the base monad&#8217;s <code>m-result</code>, which takes care of wrapping up <code>nil</code> in the required data structure.</p>
<p>Let&#8217;s see it in action:</p>
<pre>
(domonad maybe-in-sequence-m
  [x [1 2 nil 4]
   y [10 nil 30 40]]
  (+ x y))
</pre>
<p>The output is:</p>
<pre>
(11 nil 31 41 12 nil 32 42 nil 14 nil 34 44)
</pre>
<p>As expected, there are all the combinations of non-<code>nil</code> values in both input sequences. However, it is surprising at first sight that there are four <code>nil</code> entries. Shouldn&#8217;t there be eight, resulting from the combinations of a <code>nil</code> in one sequence with the four values in the other sequence?</p>
<p>To understand why there are four <code>nil</code>s, let&#8217;s look again at how the <code>m-bind</code> definition in <code>maybe-t</code> handles them. At the top level, it will be called with the vector <code>[1 2 nil 4]</code> as the monadic value. It hands this to the <code>m-bind</code> of <code>sequence-m</code>, which calls the<br />
anonymous function in <code>maybe-t</code>&#8216;s <code>m-bind</code> four times, once for each element of the vector. For the three non-<code>nil</code> values, no special treatment is added. For the one <code>nil</code> value, the net result of the computation is <code>nil</code> and the rest of the computation is never called. The <code>nil</code> in the first input vector thus accounts for one <code>nil</code> in the result, and the rest of the computation is called three times. Each of these three rounds produces then three valid results and one <code>nil</code>. We thus have 3&#215;3 valid results, 3&#215;1 <code>nil</code> from the second vector, plus the one <code>nil</code> from the first vector. That makes nine valid results and four <code>nil</code>s.</p>
<p>Is there a way to get all sixteen combinations, with all the possible <code>nil</code> results in the result? Yes, but not using the <code>maybe-t</code> transformer. You have to use the maybe and the sequence monads separately, for example like this:</p>
<pre>
(with-monad maybe-m
  (def maybe-+ (m-lift 2 +)))

(domonad sequence-m
  [x [1 2 nil 4]
   y [10 nil 30 40]]
  (maybe-+ x y))
</pre>
<p>When you use <code>maybe-t</code>, you always get the shortcutting behaviour seen above: as soon as there is a <code>nil</code>, the total result is <code>nil</code> and the rest of the computation is never executed. In most situations, that&#8217;s what you want.</p>
<p>The combination of <code>maybe-t</code> and <code>sequence-m</code> is not so useful in practice because a much easier (and more efficient) way to handle invalid results is to remove them from the sequences before any further processing happens. But the example is simple and thus fine for explaining the basics. You are now ready for a more realistic example: the use of <code>maybe-t</code> with the<br />
probability distribution monad.</p>
<p>The probability distribution monad is made for working with finite probability distributions, i.e. probability distributions in which a finite set of values has a non-zero probability. Such a distribution is represented by a map from the values to their probabilities. The monad and various useful functions for working with finite distributions is defined in the<br />
library <a href="http://code.google.com/p/clojure-contrib/source/browse/trunk/src/clojure/contrib/probabilities/finite_distributions.clj">clojure.contrib.probabilities.finite-distributions</a> (<i>NOTE: this module has not yet been migrated to the new Clojure contrib library set.</i>).</p>
<p>A simple example of a finite distribution:</p>
<pre>
(use 'clojure.contrib.probabilities.finite-distributions)
(def die (uniform #{1 2 3 4 5 6}))
(prob odd? die)
</pre>
<p>This prints <code>1/2</code>, the probability that throwing a single die yields an odd number. The value of <code>die</code> is the probability distribution of the outcome of throwing a die:</p>
<pre>
{6 1/6, 5 1/6, 4 1/6, 3 1/6, 2 1/6, 1 1/6}
</pre>
<p>Suppose we throw the die twice and look at the sum of the two values. What is its probability distribution? That&#8217;s where the monad comes in:</p>
<pre>
(domonad dist-m
  [d1 die
   d2 die]
  (+ d1 d2))
</pre>
<p>The result is:</p>
<pre>
{2 1/36, 3 1/18, 4 1/12, 5 1/9, 6 5/36, 7 1/6, 8 5/36, 9 1/9, 10 1/12, 11 1/18, 12 1/36}
</pre>
<p>You can read the above domonad block as &#8216;draw a value from the distribution <code>die</code> and call it <code>d1</code>, draw a value from the distribution <code>die</code> and call it <code>d2</code>, then give me the distribution of <code>(+ d1 d2)</code>&#8216;. This is a very simple example; in general, each distribution can depend on the values drawn from the preceding ones, thus creating the joint distribution of several variables. This approach is known as &#8216;ancestral sampling&#8217;.</p>
<p>The monad <code>dist-m</code> applies the basic rule of combining probabilities: if event A has probability p and event B has probability q, and if the events are independent (or at least uncorrelated), then the probability of the combined event (A and B) is p*q. Here is the definition of <code>dist-m</code>:</p>
<pre>
(defmonad dist-m
  [m-result (fn [v] {v 1})
   m-bind   (fn [mv f]
	      (letfn [(add-prob [dist [x p]]
		         (assoc dist x (+ (get dist x 0) p)))]
	        (reduce add-prob {}
		        (for [[x p] mv  [y q] (f x)]
			  [y (* q p)]))))
   ])
</pre>
<p>As usually, the interesting stuff happens in <code>m-bind</code>. Its first argument, <code>mv</code>, is a map representing a probability distribution. Its second argument, <code>f</code>, is a function representing the rest of the calculation. It is called for each possible value in the probability distribution in the <code>for</code> form. This <code>for</code> form iterates over both the possible values of the input distribution and the possible values of the distribution returned by <code>(f x)</code>, combining the probabilities by multiplication and putting them into the output distribution. This is done by reducing over the helper function <code>add-prob</code>, which checks if the value is already present in the map, and if so, adds the probability to the previously obtained one. This is necessary because the samples from the <code>(f x)</code> distribution can contain the same value more than once if they were obtained for different <code>x</code>.</p>
<p>For a more interesting example, let&#8217;s consider the famous <a href="http://en.wikipedia.org/wiki/Monty_Hall_problem">Monty Hall problem</a>. In a game show, the player faces three doors. A prize is waiting for him behind one of them, but there is nothing behind the two other ones. If he picks the right door, he gets the prize. Up to there, the problem is simple: the probability of winning is 1/3.</p>
<p>But there is a twist. After the player makes his choice, the game host open one of the two other doors, which shows an empty space. He then asks the player if he wants to change his mind and choose the last remaining door instead of his initial choice. Is this a good strategy?</p>
<p>To make this a well-defined problem, we have to assume that the game host knows where the prize is and that he would not open the corresponding door. Then we can start coding:</p>
<pre>
(def doors #{:A :B :C})

(domonad dist-m
  [prize  (uniform doors)
   choice (uniform doors)]
  (if (= choice prize) :win :loose))
</pre>
<p>Let&#8217;s go through this step by step. First, we choose the prize door by drawing from a uniform distribution over the three doors <code>:A</code>, <code>:B</code>, and <code>:C</code>. That represents what happens before the player comes in. Then the player&#8217;s initial choice is made, drawing from the same distribution. Finally, we ask for the distribution of the outcome of the game,  code&gt;:win</code> or <code>:loose</code>. The answer is, unsurprisingly, <code>{:win 1/3, :loose 2/3}</code>.</p>
<p>This covers the case in which the player does not accept the host's proposition to change his mind. If he does, the game becomes more complicated:</p>
<pre>
(domonad dist-m
  [prize  (uniform doors)
   choice (uniform doors)
   opened (uniform (disj doors prize choice))
   choice (uniform (disj doors opened choice))]
  (if (= choice prize) :win :loose))
</pre>
<p>The third step is the most interesting one: the game host opens a door which is neither the prize door nor the initial choice of the player. We model this by removing both prize and choice from the set of doors, and draw uniformly from the resulting set, which can have one or two elements depending on prize and choice. The player then changes his mind and chooses from the set of doors other than the open one and his initial choice. With the standard three-door game, that set has exactly one element, but the code above also works for a larger number of doors - try it out yourself!</p>
<p>Evaluating this piece of code yields <code>{:loose 1/3, :win 2/3}</code>, indicating that the change-your-mind strategy is indeed the better one.</p>
<p>Back to the <code>maybe-t</code> transformer. The finite-distribution library defines a second monad by</p>
<pre>
(def cond-dist-m (maybe-t dist-m))
</pre>
<p>This makes <code>nil</code> a special value in distributions, which is used to represent events that we don't want to consider as possible ones. With the definitions of <code>maybe-t</code> and <code>dist-m</code>, you can guess how <code>nil</code> values are propagated when distributions are combined: for any <code>nil</code> value, the distributions that potentially depend on it are never evaluated, and the <code>nil</code> value's probability is transferred entirely to the probability of <code>nil</code> in the output distribution. But how does <code>nil</code> ever get into a distribution? And, most of all, what is that good for?</p>
<p>Let's start with the last question. The goal of this <code>nil</code>-containing distributions is to eliminate certain values. Once the final distribution is obtained, the <code>nil</code> value is removed, and the remaining distribution is normalized to make the sum of the probabilities of the remaining values equal to one. This <code>nil</code>-removal and normalization is performed by the utility function <code>normalize-cond</code>. The <code>cond-dist-m</code> monad is thus a sophisticated way to compute conditional probabilities, and in particular to facilitate Bayesian inference, which is an important technique in all kinds of data analysis.</p>
<p>As a first exercice, let's calculate a simple conditional probability from an input distribution and a predicate. The output distribution should contain only the values satisfying the predicate, but be normalized to one:</p>
<pre>
(defn cond-prob [pred dist]
  (normalize-cond (domonad cond-dist-m
                    [v dist
                     :when (pred v)]
                    v))))
</pre>
<p>The important line is the one with the <code>:when</code> condition. As I have explained in parts 1 and 2, the <code>domonad</code> form becomes</p>
<pre>
(m-bind dist
        (fn [v]
          (if (pred v)
            (m-result v)
             m-zero)))
</pre>
<p>If you have been following carefully, you should complain now: with the definitions of <code>dist-m</code> and <code>maybe-t</code> I have given above, <code>cond-dist-m</code> should not have any <code>m-zero</code>! But as I said earlier, the <code>maybe-t</code> shown here is a simplified version. The real one checks if the base monad has <code>m-zero</code>, and if it hasn't, it substitutes its own, which is <code>(with-monad m (m-result nil))</code>. Therefore the <code>m-zero</code> of <code>cond-dist-m</code> is <code>{nil 1}</code>, the distribution whose only value is <code>nil</code>.</p>
<p>The net effect of the <code>domonad</code> form in this example is thus to keep all values that satisfy the predicate with their initial probabilities, but to transfer the probability of all values to <code>nil</code>. The call to <code>normalize-cond</code> then takes out the <code>nil</code> and re-distributes its probability to the other values. Example:</p>
<pre>
(cond-prob odd? die)
-&gt; {5 1/3, 3 1/3, 1 1/3}
</pre>
<p>The <code>cond-dist-m</code> monad really becomes interesting for Bayesian inference problems. Bayesian inference is technique for drawing conclusions from incomplete observations. It has a wide range of applications, from spam filters to weather forecasts. For an introduction to the technique and its mathematical basis, you can start with the <a href="http://en.wikipedia.org/wiki/Bayesian_inference">Wikipedia article</a>.</p>
<p>Here I will discuss a very simple inference problem and its solution in Clojure. Suppose someone has three dice, one with six faces, one with eight, and one with twelve. This person picks one die, throws it a few times, and gives us the numbers, but doesn't tell us which die it was. Given these observations, we would like to infer the probabilities for each of the three dice to have been picked. We start by defining a function that returns the distribution of a die with n faces:</p>
<pre>
(defn die-n [n] (uniform (range 1 (inc n))))
</pre>
<p>Next, we come to the core of Bayesian inference. One central ingredient is the probability for throwing a given number under the assumption that die X was used. We thus need the probability distributions for each of our three dice:</p>
<pre>
(def dice {:six     (die-n 6)
           :eight   (die-n 8 )
           :twelve  (die-n 12)})
</pre>
<p>The other central ingredient is a distribution representing our 'prior knowledge' about the chosen die. We actually know nothing at all, so each die has the same weight in this distribution:</p>
<pre>
(def prior (uniform (keys dice)))
</pre>
<p>Now we can write the inference function. It takes as input the prior-knowledge distribution and a number that was obtained from the die. It returns the <i>a posteriori</i> distribution that combines the prior information with the information from the observation.</p>
<pre>
(defn add-observation [prior observation]
  (normalize-cond
    (domonad cond-dist-m
      [die    prior
       number (get dice die)
       :when  (= number observation)]
      die)))
</pre>
<p>Let's look at the <code>domonad</code> form. The first step picks one die according to the prior knowledge. The second line "throws" that die, obtaining a number. The third line eliminates the numbers that don't match the observation. And then we ask for the distribution of the die.</p>
<p>It is instructive to compare this function with the mathematical formula for Bayes' theorem, which is the basis of Bayesian inference. Bayes' theorem is P(H|E) = P(E|H) P(H) / P(E), where H stands for the hypothesis ("the die chosen was X") and E stands for the evidence ("the number thrown was N"). P(H) is the prior knowledge. The formula must be evaluated for a fixed value of E, which is the observation.</p>
<p>The first line of our <code>domonad</code> form implements P(H), the second line implements P(E|H). These two lines together thus sample P(E, H) using ancestral sampling, as we have seen before. The <code>:when</code> line represents the observation; we wish to apply Bayes' theorem for a fixed value of E. Once E has been fixed, P(E) is just a number, required for normalization. This is handled by <code>normalize-cond</code> in our code.</p>
<p>Let's see what happens when we add a single observation:</p>
<pre>
(add-observation prior 1)
-&gt; {:twelve 2/9, :eight 1/3, :six 4/9}
</pre>
<p>We see that the highest probability is given to <code>:six</code>, then <code>:eight</code>, and finally <code>:twelve</code>. This happens because 1 is a possible value for all dice, but it is more probable as a result of throwing a six-faced die (1/6) than as a result of throwing an eight-faced die (1/8) or a twelve-faced die (1/12). The observation thus favours a die with a small number of faces.</p>
<p>If we have three observations, we can call add-observation repeatedly:</p>
<pre>
(-&gt; prior (add-observation 1)
          (add-observation 3)
          (add-observation 7))
-&gt; {:twelve 8/35, :eight 27/35}
</pre>
<p>Now we see that the candidate <code>:six</code> has disappeared. In fact, the observed value of 7 rules it out completely. Moreover, the observed numbers strongly favour <code>:eight</code> over <code>:twelve</code>, which is again due to the preference for the smallest possible die in the game.</p>
<p>This inference problem is very similar to how a spam filter works. In that case, the three dice are replaced by the choices <code>:spam</code> or <code>:no-spam</code>. For each of them, we have a distribution of words, obtained by analyzing large quantities of e-mail messages. The function add-observation is strictly the same, we'd just pick different variable names. And then we'd call it for each word in the message we wish to evaluate, starting from a prior distribution defined by the total number of <code>:spam</code> and <code>:no-spam</code> messages in our database.</p>
<p>To end this introduction to monad transformers, I will explain the <code>m-zero</code> problem in <code>maybe-t</code>. As you know, the maybe monad has an <code>m-zero</code> definition (<code>nil</code>) and an <code>m-plus</code> definition, and those two can be carried over into a monad created by applying <code>maybe-t</code> to some base monad. This is what we have seen in the case of <code>cond-dist-m</code>. However, the base monad might have its own <code>m-zero</code> and <code>m-plus</code>, as we have seen in the case of <code>sequence-m</code>. Which set of definitions should the combined monad have? Only the user of <code>maybe-t</code> can make that decision, so <code>maybe-t</code> has an optional parameter for this (see its documentation for the details). The only clear case is a base monad without <code>m-zero</code> and <code>m-plus</code>; in that case, nothing is lost if <code>maybe-t</code> imposes its own.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onclojure.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onclojure.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onclojure.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onclojure.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/onclojure.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/onclojure.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/onclojure.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/onclojure.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onclojure.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onclojure.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onclojure.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onclojure.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onclojure.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onclojure.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onclojure.com&#038;blog=5872423&#038;post=51&#038;subd=onclojure&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://onclojure.com/2009/04/24/a-monad-tutorial-for-clojure-programmers-part-4/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/305e4cf66ef1179f7e95981b1520ba1a?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">khinsen</media:title>
		</media:content>
	</item>
		<item>
		<title>A monad tutorial for Clojure programmers (part 3)</title>
		<link>http://onclojure.com/2009/03/23/a-monad-tutorial-for-clojure-programmers-part-3/</link>
		<comments>http://onclojure.com/2009/03/23/a-monad-tutorial-for-clojure-programmers-part-3/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 14:10:43 +0000</pubDate>
		<dc:creator>khinsen</dc:creator>
				<category><![CDATA[Libraries]]></category>

		<guid isPermaLink="false">http://onclojure.com/?p=33</guid>
		<description><![CDATA[Before moving on to the more advanced aspects of monads, let&#8217;s recapitulate what defines a monad (see part 1 and part 2 for explanations): A data structure that represents the result of a computation, or the computation itself. We haven&#8217;t seen an example of the latter case yet, but it will come soon. A function [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onclojure.com&#038;blog=5872423&#038;post=33&#038;subd=onclojure&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Before moving on to the more advanced aspects of monads, let&#8217;s recapitulate what defines a monad (see <a href="http://onclojure.com/2009/03/05/a-monad-tutorial-for-clojure-programmers-part-1/">part 1</a> and <a href="http://onclojure.com/2009/03/06/a-monad-tutorial-for-clojure-programmers-part-2/">part 2</a> for explanations):</p>
<ol>
<li> A data structure that represents the result of a computation, or the computation itself. We haven&#8217;t seen an example of the latter case yet, but it will come soon.</li>
<li> A function <code>m-result</code> that converts an arbitrary value to a monadic data structure equivalent to that value.</li>
<li> A function <code>m-bind</code> that binds the result of a computation, represented by the monadic data structure, to a name (using a function of one argument) to make it available in the following computational step.</li>
</ol>
<p>Taking the sequence monad as an example, the data structure is the sequence, representing the outcome of a non-deterministic computation, <code>m-result</code> is the function list, which converts any value into a list containing just that value, and <code>m-bind</code>is a function that executes the remaining steps once for each element in a sequence, and removes one level of nesting in the result.</p>
<p>The three ingredients above are what defines a monad, under the condition that the three monad laws are respected. Some monads have two additional definitions that make it possible to perform additional operations. These two definitions have the names <code>m-zero</code> and <code>m-plus</code>.  <code>m-zero</code> represents a special monadic value that corresponds to a computation with no result. One example is <code>nil</code> in the maybe monad, which typically represents a failure of some kind. Another example is the empty sequence in the sequence monad. The identity monad is an example of a monad that has no <code>m-zero</code>.</p>
<p><code>m-plus</code> is a function that combines the results of two or more computations into a single one. For the sequence monad, it is the concatenation of several sequences. For the maybe monad, it is a function that returns the first of its arguments that is not <code>nil</code>.</p>
<p>There is a condition that has to be satisfied by the definitions of <code>m-zero</code> and <code>m-plus</code> for any monad:</p>
<pre>(= (m-plus m-zero monadic-expression)
   (m-plus monadic-expression m-zero)
   monadic-expression)</pre>
<p>In words, combining <code>m-zero</code> with any monadic expression must yield the same expression. You can easily verify that this is true for the two examples (maybe and sequence) given above.</p>
<p>One benefit of having an <code>m-zero</code> in a monad is the possibility to use conditions. In the first part, I promised to return to the <code>:when</code> clauses in Clojure&#8217;s for forms, and now the time has come to discuss them. A simple example is</p>
<pre>(for [a (range 5)
      :when (odd? a)]
  (* 2 a))</pre>
<p>The same construction is possible with <code>domonad</code>:</p>
<pre>(domonad sequence
  [a (range 5)
   :when (odd? a)]
  (* 2 a))</pre>
<p>Recall that <code>domonad</code> is a macro that translates a <code>let</code>-like syntax into a chain of calls to <code>m-bind</code> ending in a call to <code>m-result</code>. The clause <code>a (range 5)</code> becomes</p>
<pre>(m-bind (range 5) (fn [a] remaining-steps))</pre>
<p>where <code>remaining-steps</code> is the transformation of the rest of the <code>domonad</code> form. A <code>:when</code> clause is of course treated specially, it becomes</p>
<pre>(if predicate remaining-steps m-zero)</pre>
<p>Our small example thus expands to</p>
<pre>(m-bind (range 5) (fn [a]
  (if (odd? a) (m-result (* 2 a)) m-zero)))</pre>
<p>Inserting the definitions of <code>m-bind</code>, <code>m-result</code>, and <code>m-zero</code>, we finally get</p>
<pre>(apply concat (map (fn [a]
  (if (odd? a) (list (* 2 a)) (list))) (range 5)))</pre>
<p>The result of <code>map</code> is a sequence of lists that have zero or one elements: zero for even values (the value of <code>m-zero</code>) and one for odd values (produced by <code>m-result</code>). <code>concat</code> makes a single flat list out of this, which contains only the elements that satisfy the <code>:when</code> clause.</p>
<p>As for <code>m-plus</code>, it is in practice used mostly with the maybe and sequence monads, or with variations of them. A typical use would be a search algorithm (think of a parser, a regular expression search, a database query) that can succeed (with one or more results) or fail (no results). <code>m-plus</code> would then be used to pursue alternative searches and combine the results into one (sequence monad), or to continue searching until a result is found (maybe monad).  Note that it is perfectly possible in principle to have a monad with an <code>m-zero</code> but no <code>m-plus</code>, though in all common cases an <code>m-plus</code> can be defined as well if an <code>m-zero</code> is known.</p>
<p>After this bit of theory, let&#8217;s get acquainted with more monads. In the beginning of this part, I mentioned that the data structure used in a monad does not always represent the result(s) of a computational step, but sometimes the computation itself. An example of such a monad is the state monad, whose data structure is a function.</p>
<p>The state monad&#8217;s purpose is to facilitate the implementation of stateful algorithms in a purely functional way. Stateful algorithms are algorithms that require updating some variables. They are of course very common in imperative languages, but not compatible with the basic principle of pure functional programs which should not have mutable data structures. One way to simulate state changes while remaining purely functional is to have a special data item (in Clojure that would typically be a map) that stores the current values of all mutable variables that the algorithm refers to. A function that in an imperative program would modify a variable now takes the current state as an additional input argument and returns an updated state along with its usual result. The changing state thus becomes explicit in the form of a data item that is passed from function to function as the algorithm&#8217;s execution progresses. The state monad is a way to hide the state-passing behind the scenes and write an algorithm in an imperative style that consults and modifies the state.</p>
<p>The state monad differs from the monads that we have seen before in that its data structure is a function. This is thus a case of a monad whose data structure represents not the result of a computation, but the computation itself. A state monad value is a function that takes a single argument, the current state of the computation, and returns a vector of length two containing the result of the computation and the updated state after the computation. In practice, these functions are typically closures, and what you use in your program code are functions that create these closures. Such state-monad-value-generating functions are the equivalent of statements in imperative languages. As you will see, the state monad allows you to compose such functions in a way that makes your code look perfectly imperative, even though it is still purely functional!</p>
<p>Let&#8217;s start with a simple but frequent situation: the state that your code deals with takes the form of a map. You may consider that map to be a namespace in an imperative languages, with each key defining a variable. Two basic operations are reading the value of a variable, and modifying that value. They are already provided in the Clojure monad library, but I will show them here anyway because they make nice examples.</p>
<p>First, we look at <code>fetch-val</code>, which retrieves the value of a variable:</p>
<pre>(defn fetch-val [key]
  (fn [s]
    [(key s) s]))</pre>
<p>Here we have a simple state-monad-value-generating function. It returns a function of a state variable <code>s</code> which, when executed, returns a vector of the return value and the new state. The return value is the value corresponding to the key in the map that is the state value. The new state is just the old one &#8211; a lookup should not change the state of course.</p>
<p>Next, let&#8217;s look at <code>set-val</code>, which modifies the value of a variable and returns the previous value:</p>
<pre>(defn set-val [key val]
  (fn [s]
    (let [old-val (get s key)
	  new-s   (assoc s key val)]
      [old-val new-s])))</pre>
<p>The pattern is the same again: <code>set-val</code> returns a function of state <code>s</code> that, when executed, returns the old value of the variable plus an updated state map in which the new value is the given one.</p>
<p>With these two ingredients, we can start composing statements. Let&#8217;s define a statement that copies the value of one variable into another one and returns the previous value of the modified variable:</p>
<pre>(defn copy-val [from to]
  (domonad state-m
    [from-val   (fetch-val from)
     old-to-val (set-val to from-val)]
    old-to-val))</pre>
<p>What is the result of <code>copy-val</code>? A state-monad value, of course: a function of a state variable <code>s</code> that, when executed, returns the old value of variable to plus the state in which the copy has taken place. Let&#8217;s try it out:</p>
<pre>(let [initial-state        {:a 1 :b 2}
      computation          (copy-val :b :a)
      [result final-state] (computation initial-state)]
  final-state)</pre>
<p>We get {:a 2, :b 2}, as expected. But how does it work? To understand the state monad, we need to look at its definitions for <code>m-result</code> and <code>m-bind</code>, of course.</p>
<p>First, <code>m-result</code>, which does not contain any surprises: it returns a function of a state variable <code>s</code> that, when executed, returns the result value <code>v</code> and the unchanged state <code>s</code>:</p>
<pre>(defn m-result [v] (fn [s] [v s]))</pre>
<p>The definition of <code>m-bind</code> is more interesting:</p>
<pre>(defn m-bind [mv f]
  (fn [s]
    (let [[v ss] (mv s)]
      ((f v) ss))))</pre>
<p>Obviously, it returns a function of a state variable <code>s</code>. When that function is executed, it first runs the computation described by <code>mv</code> (the first &#8216;statement&#8217; in the chain set up by<code> m-bind</code>) by applying it to the state <code>s</code>. The return value is decomposed into result <code>v</code> and new state <code>ss</code>. The result of the first step, <code>v</code>, is injected into the rest of the computation by calling <code>f</code> on it (like for the other <code>m-bind</code> functions that we have seen). The result of that call is of course another state-monad value, and thus a function of a state variable. When we are inside our <code>(fn [s] ...)</code>, we are already at the execution stage, so we have to call that function on the state <code>ss</code>, the one that resulted from the execution of the first computational step.</p>
<p>The state monad is one of the most basic monads, of which many variants are in use. Usually such a variant adds something to <code>m-bind</code> that is specific to the kind of state being handled. An example is the the stream monad in <code>clojure.contrib.stream-utils</code>. (<i>NOTE: the stream monad has not been migrated to the new Clojure contrib library set.</i>) Its state describes a stream of data items, and the<code> m-bind</code> function checks for invalid values and for the end-of-stream condition in addition to what the basic <code>m-bind</code> of the state monad does.</p>
<p>A variant of the state monad that is so frequently used that has itself become one of the standard monads is the writer monad. Its state is an accumulator (any type implementing th e protocol <code>writer-monad-protocol</code>, for example strings, lists, vectors, and sets), to which computations can add something by calling the function <code>write</code>. The name comes from a particularly popular application: logging. Take a basic computation in the identity monad, for example (remember that the identity monad is just Clojure&#8217;s built-in <code>let</code>). Now assume you want to add a protocol of the computation in the form of a list or a string that accumulates information about the progress of the computation. Just change the identity monad to the writer monad, and add calls to <code>write</code> where required!</p>
<p>Here is a concrete example: the well-known Fibonacci function in its most straightforward (and most inefficient) implementation:</p>
<pre>
(defn fib [n]
  (if (&lt; n 2)
    n
    (let [n1 (dec n)
	  n2 (dec n1)]
      (+ (fib n1) (fib n2)))))
</pre>
<p>Let&#8217;s add some protocol of the computation in order to see which calls are made to arrive at the final result. First, we rewrite the above example a bit to make every computational step explicit:</p>
<pre>
(defn fib [n]
  (if (&lt; n 2)
    n
    (let [n1 (dec n)
	  n2 (dec n1)
	  f1 (fib n1)
	  f2 (fib n2)]
      (+ f1 f2))))
</pre>
<p>Second, we replace <code>let</code> by <code>domonad</code> and choose the writer monad with a vector accumulator:</p>
<pre>
(with-monad (writer-m [])

  (defn fib-trace [n]
    (if (&lt; n 2)
      (m-result n)
      (domonad
        [n1 (m-result (dec n))
	 n2 (m-result (dec n1))
	 f1 (fib-trace n1)
	 _  (write [n1 f1])
	 f2 (fib-trace n2)
	 _  (write [n2 f2])
	 ]
	(+ f1 f2))))

)
</pre>
<p>Finally, we run <code>fib-trace</code> and look at the result:</p>
<pre>
(fib-trace 3)
[2 [[1 1] [0 0] [2 1] [1 1]]]
</pre>
<p>The first element of the return value, 2, is the result of the function <code>fib</code>. The second element is the protocol vector containing the arguments and results of the recursive calls.</p>
<p>Note that it is sufficient to comment out the lines with the calls to <code>write</code> and change the monad to <code>identity-m</code> to obtain a standard fib function with no protocol &#8211; try it out for yourself!</p>
<p><a href="http://onclojure.com/2009/04/24/a-monad-tutorial-for-clojure-programmers-part-4/">Part 4</a> will show you how to define your own monads by combining monad building blocks called monad transformers. As an illustration, I will explain the probability monad and how it can be used for Bayesian estimates when combined with the maybe-transformer.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onclojure.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onclojure.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onclojure.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onclojure.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/onclojure.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/onclojure.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/onclojure.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/onclojure.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onclojure.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onclojure.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onclojure.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onclojure.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onclojure.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onclojure.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onclojure.com&#038;blog=5872423&#038;post=33&#038;subd=onclojure&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://onclojure.com/2009/03/23/a-monad-tutorial-for-clojure-programmers-part-3/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/305e4cf66ef1179f7e95981b1520ba1a?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">khinsen</media:title>
		</media:content>
	</item>
		<item>
		<title>A monad tutorial for Clojure programmers (part 2)</title>
		<link>http://onclojure.com/2009/03/06/a-monad-tutorial-for-clojure-programmers-part-2/</link>
		<comments>http://onclojure.com/2009/03/06/a-monad-tutorial-for-clojure-programmers-part-2/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 13:09:45 +0000</pubDate>
		<dc:creator>khinsen</dc:creator>
				<category><![CDATA[Libraries]]></category>

		<guid isPermaLink="false">http://onclojure.com/?p=26</guid>
		<description><![CDATA[In the first part of this tutorial, I have introduced the two most basic monads: the identity monad and the maybe monad. In this part, I will continue with the sequence monad, which will be the occasion to explain the role of the mysterious m-result function. I will also show a couple of useful generic [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onclojure.com&#038;blog=5872423&#038;post=26&#038;subd=onclojure&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In the <a href="http://onclojure.com/2009/03/05/a-monad-tutorial-for-clojure-programmers-part-1/">first part</a> of this tutorial, I have introduced the two most basic monads: the identity monad and the maybe monad. In this part, I will continue with the sequence monad, which will be the occasion to explain the role of the mysterious <code>m-result</code> function. I will also show a couple of useful generic monad operations.</p>
<p>One of the most frequently used monads is the sequence monad (known in the Haskell world as the list monad). It is in fact so common that it is built into Clojure as well, in the form of the <code>for</code> form. Let&#8217;s look at an example:</p>
<pre>
(for [a (range 5)
      b (range a)]
  (* a b))
</pre>
<p>A <code>for</code> form resembles a <code>let</code> form not only syntactically. It has the same structure: a list of binding expressions, in which each expression can use the bindings from the preceding ones, and a final result expressions that typically depends on all the bindings as well. The difference between <code>let</code> and <code>for</code> is that let binds a single value to each symbol, whereas for binds several values in sequence. The expressions in the binding list must therefore evaluate to sequences, and the result is a sequence as well. The <code>for</code> form can also contain conditions in the form of <code>:when</code> and <code>:while</code> clauses, which I will discuss later. From the monad point of view of composable computations, the sequences are seen as the results of non-deterministic computations, i.e. computations that have more than one result.</p>
<p>Using the monad library, the above loop is written as</p>
<pre>
(domonad sequence-m
  [a (range 5)
   b (range a)]
  (* a b))
</pre>
<p>Since we alread know that the domonad macro expands into a chain of <code>m-bind</code> calls ending in an expression that calls <code>m-result</code>, all that remains to be explained is how <code>m-bind</code> and <code>m-result</code> are defined to obtain the desired looping effect.</p>
<p>As we have seen before, <code>m-bind</code> calls a function of one argument that represents the rest of the computation, with the function argument representing the bound variable. To get a loop, we have to call this function repeatedly. A first attempt at such an <code>m-bind</code> function would be</p>
<pre>
(defn m-bind-first-try [sequence function]
  (map function sequence))
</pre>
<p>Let&#8217;s see what this does for our example:</p>
<pre>
(m-bind-first-try (range 5)  (fn [a]
(m-bind-first-try (range a)  (fn [b]
(* a b)))))
</pre>
<p>This yields <code>(() (0) (0 2) (0 3 6) (0 4 8 12))</code>, whereas the <code>for</code> form given above yields <code>(0 0 2 0 3 6 0 4 8 12)</code>. Something is not yet quite right. We want a single flat result sequence, but what we get is a nested sequence whose nesting level equals the number of <code>m-bind</code> calls. Since <code>m-bind</code> introduces one level of nesting, it must also remove one. That sounds like a job for <code>concat</code>. So let&#8217;s try again:</p>
<pre>
(defn m-bind-second-try [sequence function]
  (apply concat (map function sequence)))

(m-bind-second-try (range 5)  (fn [a]
(m-bind-second-try (range a)  (fn [b]
(* a b)))))
</pre>
<p>This is worse: we get an exception. Clojure tells us:</p>
<pre>java.lang.IllegalArgumentException: Don't know how to create ISeq from: Integer
</pre>
<p>Back to thinking!</p>
<p>Our current <code>m-bind</code> introduces a level of sequence nesting and also takes one away. Its result therefore has as many levels of nesting as the return value of the function that is called. The final result of our expression has as many nesting values as <code>(* a b)</code> &#8211; which means none at all. If we want one level of nesting in the result, no matter how many calls to <code>m-bind</code> we have, the only solution is to introduce one level of nesting at the end. Let&#8217;s try a quick fix:</p>
<pre>
(m-bind-second-try (range 5)  (fn [a]
(m-bind-second-try (range a)  (fn [b]
(list (* a b))))))
</pre>
<p>This works! Our <code>(fn [b] ...)</code> always returns a one-element list. The inner <code>m-bind</code> thus creates a sequence of one-element lists, one for each value of <code>b</code>, and concatenates them to make a flat list. The outermost <code>m-bind</code> then creates such a list for each value of <code>a</code> and concatenates them to make another flat list. The result of each <code>m-bind</code> thus is a flat list, as it should be. And that illustrates nicely why we need <code>m-result</code> to make a monad work. The final definition of the sequence monad is thus given by</p>
<pre>
(defn m-bind [sequence function]
  (apply concat (map function sequence)))

(defn m-result [value]
  (list value))
</pre>
<p>The role of <code>m-result</code> is to turn a bare value into the expression that, when appearing on the right-hand side in a monadic binding, binds the symbol to that value. This is one of the conditions that a pair of <code>m-bind</code> and <code>m-result</code> functions must fulfill in order to define a monad. Expressed as Clojure code, this condition reads</p>
<pre>
(= (m-bind (m-result value) function)
   (function value))
</pre>
<p>There are two more conditions that complete the three <em>monad laws</em>. One of them is</p>
<pre>
(= (m-bind monadic-expression m-result)
   monadic-expression)
</pre>
<p>with <code>monadic-expression</code> standing for any expression valid in the monad under consideration, e.g. a sequence expression for the sequence monad. This condition becomes clearer when expressed using the domonad macro:</p>
<pre>
(= (domonad
     [x monadic-expression]
      x)
   monadic-expression)
</pre>
<p>The final monad law postulates associativity:</p>
<pre>
(= (m-bind (m-bind monadic-expression
                   function1)
           function2)
   (m-bind monadic-expression
           (fn [x] (m-bind (function1 x)
                           function2))))
</pre>
<p>Again this becomes a bit clearer using domonad syntax:</p>
<pre>
(= (domonad
     [y (domonad
          [x monadic-expression]
          (function1 x))]
     (function2 y))
   (domonad
     [x monadic-expression
      y (m-result (function1 x))]
     (function2 y)))
</pre>
<p>It is not necessary to remember the monad laws for using monads, they are of importance only when you start to define your own monads. What you should remember about <code>m-result</code> is that <code>(m-result x)</code> represents the monadic computation whose result is <code>x</code>. For the sequence monad, this means a sequence with the single element <code>x</code>. For the identity monad and the maybe monad, which I have presented in the first part of the tutorial, there is no particular structure to monadic expressions, and therefore <code>m-result</code> is just the identity function.</p>
<p>Now it&#8217;s time to relax: the most difficult material has been covered. I will return to monad theory in the next part, where I will tell you more about the <code>:when</code> clauses in <code>for</code> loops. The rest of this part will be of a more pragmatic nature.</p>
<p>You may have wondered what the point of the identity and sequence monads is, given that Clojure already contains fully equivalent forms. The answer is that there are generic operations on computations that have an interpretation in any monad. Using the monad library, you can write functions that take a monad as an argument and compose computations in the given monad. I will come back to this later with a concrete example. The monad library also contains some useful predefined operations for use with any monad, which I will explain now. They all have names starting with the prefix <code>m-</code>.</p>
<p>Perhaps the most frequently used generic monad function is <code>m-lift</code>. It converts a function of <em>n</em> standard value arguments into a function of <em>n</em> monadic expressions that returns a monadic expression. The new function contains implicit <code>m-bind</code> and <code>m-result</code> calls. As a simple example, take</p>
<pre>
(def nil-respecting-addition
  (with-monad maybe-m
    (m-lift 2 +)))
</pre>
<p>This is a function that returns the sum of two arguments, just like <code>+</code> does, except that it automatically returns <code>nil</code> when either of its arguments is <code>nil</code>. Note that <code>m-lift</code> needs to know the number of arguments that the function has, as there is no way to obtain this information by inspecting the function itself.</p>
<p>To illustrate how <code>m-lift</code> works, I will show you an equivalent definition in terms of <code>domonad</code>:</p>
<pre>
(defn nil-respecting-addition
  [x y]
  (domonad maybe-m
    [a x
     b y]
    (+ a b)))
</pre>
<p>This shows that <code>m-lift</code> implies one call to <code>m-result</code> and one <code>m-bind</code> call per argument.  The same definition using the sequence monad would yield a function that returns a sequence of all possible sums of pairs from the two input sequences.</p>
<p>Exercice: The following function is equivalent to a well-known built-in Clojure function. Which one?</p>
<pre>
(with-monad sequence-m
  (defn mystery
    [f xs]
    ( (m-lift 1 f) xs )))
</pre>
<p>Another popular monad operation is <code>m-seq</code>. It takes a sequence of monadic expressions, and returns a sequence of their result values. In terms of <code>domonad</code>, the expression <code>(m-seq [a b c])</code> becomes</p>
<pre>
(domonad
  [x a
   y b
   z c]
  '(x y z))
</pre>
<p>Here is an example of how you might want to use it:</p>
<pre>
(with-monad sequence-m
   (defn ntuples [n xs]
      (m-seq (replicate n xs))))
</pre>
<p>Try it out for yourself!</p>
<p>The final monad operation I want to mention is <code>m-chain</code>. It takes a list of one-argument computations, and chains them together by calling each element of this list with the result of the preceding one. For example, <code>(m-chain [a b c])</code> is equivalent to</p>
<pre>
(fn [arg]
  (domonad
    [x (a arg)
     y (b x)
     z (c y)]
    z))
</pre>
<p>A usage example is the traversal of hierarchies. The Clojure function <code>parents</code> yields the parents of a given class or type in the hierarchy used for multimethod dispatch. When given a Java class, it returns its base classes. The following function builds on <code>parents</code> to find the n-th generation ascendants of a class:</p>
<pre>
(with-monad sequence-m
  (defn n-th-generation
    [n cls]
    ( (m-chain (replicate n parents)) cls )))

(n-th-generation 0 (class []))
(n-th-generation 1 (class []))
(n-th-generation 2 (class []))
</pre>
<p>You may notice that some classes can occur more than once in the result, because they are the base class of more than one class in the generation below. In fact, we ought to use sets instead of sequences for representing the ascendants at each generation. Well&#8230; that&#8217;s easy. Just replace <code>sequence-m</code> by <code>set-m</code> and run it again!</p>
<p>In <a href="http://onclojure.com/2009/03/23/a-monad-tutorial-for-clojure-programmers-part-3/">part 3</a>, I will come back to the <code>:when</code> clause in for loops, and show how it is implemented and generalized in terms of monads. I will also explain another monad or two. Stay tuned!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onclojure.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onclojure.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onclojure.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onclojure.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/onclojure.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/onclojure.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/onclojure.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/onclojure.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onclojure.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onclojure.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onclojure.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onclojure.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onclojure.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onclojure.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onclojure.com&#038;blog=5872423&#038;post=26&#038;subd=onclojure&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://onclojure.com/2009/03/06/a-monad-tutorial-for-clojure-programmers-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/305e4cf66ef1179f7e95981b1520ba1a?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">khinsen</media:title>
		</media:content>
	</item>
		<item>
		<title>A monad tutorial for Clojure programmers (part 1)</title>
		<link>http://onclojure.com/2009/03/05/a-monad-tutorial-for-clojure-programmers-part-1/</link>
		<comments>http://onclojure.com/2009/03/05/a-monad-tutorial-for-clojure-programmers-part-1/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 18:15:03 +0000</pubDate>
		<dc:creator>khinsen</dc:creator>
				<category><![CDATA[Libraries]]></category>

		<guid isPermaLink="false">http://onclojure.com/?p=14</guid>
		<description><![CDATA[Monads in functional programming are most often associated with the Haskell language, where they play a central role in I/O and have found numerous other uses. Most introductions to monads are currently written for Haskell programmers. However, monads can be used with any functional language, even languages quite different from Haskell. Here I want to explain monads in the context [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onclojure.com&#038;blog=5872423&#038;post=14&#038;subd=onclojure&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Monads in functional programming are most often associated with the Haskell language, where they play a central role in I/O and have found numerous other uses. Most introductions to monads are currently written for Haskell programmers. However, monads can be used with any functional language, even languages quite different from Haskell. Here I want to explain monads in the context of Clojure, a modern Lisp dialect with strong support for functional programming. A monad implementation for Clojure is available in the library <a href="https://github.com/clojure/algo.monads/blob/master/src/main/clojure/clojure/algo/monads.clj">clojure.algo.monads</a>. Before trying out the examples given in this tutorial, type <code>(use 'clojure.algo.monads)</code> into your Clojure REPL. You also have to install the monad library, of course, which you can do by hand, or using build tools such as leiningen.</p>
<p>Monads are about composing computational steps into a bigger multi-step computation. Let&#8217;s start with the simplest monad, known as the identity monad in the Haskell world. It&#8217;s actually built into the Clojure language, and you have certainly used it: it&#8217;s the <a href="http://clojure.org/special_forms#let"><code>let</code></a> form.</p>
<p>Consider the following piece of code:</p>
<pre>(let [a  1
      b  (inc a)]
  (* a b))</pre>
<p>This can be seen as a three-step calculation:</p>
<ol>
<li>Compute <code>1</code> (a constant), and call the result <code>a</code>.</li>
<li>Compute <code>(inc a)</code>, and call the result <code>b</code>.</li>
<li>Compute <code>(* a b)</code>, which is the result of the multi-step computation.</li>
</ol>
<p>Each step has access to the results of all previous steps through the symbols to which their results have been bound.</p>
<p>Now suppose that Clojure didn&#8217;t have a let form. Could you still compose computations by binding intermediate results to symbols? The answer is yes, using functions. The following expression is in fact equivalent to the previous one:</p>
<pre>( (fn [a]  ( (fn [b] (* a b)) (inc a) ) )  1 )</pre>
<p>The outermost level defines an anonymous function of <code>a</code> and calls with with the argument <code>1</code> &#8211; this is how we bind <code>1</code> to the symbol <code>a</code>. Inside the function of <code>a</code>, the same construct is used once more: the body of <code>(fn [a] ...)</code> is a function of <code>b</code> called with argument <code>(inc a)</code>. If you don&#8217;t believe that this somewhat convoluted expression is equivalent to the original let form, just paste both into Clojure!</p>
<p>Of course the functional equivalent of the <code>let</code> form is not something you would want to work with. The computational steps appear in reverse order, and the whole construct is nearly unreadable even for this very small example. But we can clean it up and put the steps in the right order with a small helper function, bind. We will call it <code>m-bind</code> (for monadic bind) right away, because that&#8217;s the name it has in Clojure&#8217;s monad library. First, its definition:</p>
<pre>(defn m-bind [value function]
  (function value))</pre>
<p>As you can see, it does almost nothing, but it permits to write a value before the function that is applied to it. Using <code>m-bind</code>, we can write our example as</p>
<pre>(m-bind 1        (fn [a]
(m-bind (inc a)  (fn [b]
        (* a b)))))</pre>
<p>That&#8217;s still not as nice as the <code>let</code> form, but it comes a lot closer. In fact, all it takes to convert a <code>let</code> form into a chain of computations linked by <code>m-bind</code> is a little macro. This macro is called <code>domonad</code>, and it permits us to write our example as</p>
<pre>(domonad identity-m
  [a  1
   b  (inc a)]
  (* a b))</pre>
<p>This looks exactly like our original let form. Running <code>macroexpand-1</code> on it yields</p>
<pre>
(clojure.algo.monads/with-monad identity-m
  (m-bind 1 (fn [a] (m-bind (inc a) (fn [b] (m-result (* a b)))))))
</pre>
<p>This is the expression you have seen above, wrapped in a<code> (with-monad identity-m ...)</code> block (to tell Clojure that you want to evaluate it in the identity monad) and with an additional call to <code>m-result</code> that I will explain later. For the identity monad, <code>m-result</code> is just <code>identity</code> &#8211; hence its name.</p>
<p>As you might guess from all this, monads are generalizations of the <code>let</code> form that replace the simple <code>m-bind</code> function shown above by something more complex. Each monad is defined by an implementation of <code>m-bind</code> and an associated implementation of <code>m-result</code>. A <code>with-monad</code> block simply binds (using a <code>let</code> form!) these implementations to the names <code>m-bind</code> and <code>m-result</code>, so that you can use a single syntax for composing computations in any monad. Most frequently, you will use the <code>domonad</code> macro for this.</p>
<p>As our second example, we will look at another very simple monad, but one that adds something useful that you don&#8217;t get in a <code>let</code> form. Suppose your computations can fail in some way, and signal failure by producing <code>nil</code> as a result. Let&#8217;s take our example expression again and wrap it into a function:</p>
<pre>
(defn f [x]
  (let [a  x
        b  (inc a)]
    (* a b)))
</pre>
<p>In the new setting of possibly-failing computations, you want this to return <code>nil</code> when <code>x</code> is <code>nil</code>, or when <code>(inc a)</code> yields <code>nil</code>. (Of course <code>(inc a)</code> will never yield <code>nil</code>, but that&#8217;s the nature of examples&#8230;) Anyway, the idea is that whenever a computational step yields <code>nil</code>, the final result of the computation is <code>nil</code>, and the remaining steps are never executed. All it takes to get this behaviour is a small change:</p>
<pre>
(defn f [x]
  (domonad maybe-m
    [a  x
     b  (inc a)]
    (* a b)))
</pre>
<p>The maybe monad represents computations whose result is maybe a valid value, but maybe <code>nil</code>. Its <code>m-result</code> function is still <code>identity</code>, so we don&#8217;t have to discuss <code>m-result</code> yet (be patient, we will get there in the second part of this tutorial). All the magic is in the <code>m-bind</code> function:</p>
<pre>
(defn m-bind [value function]
  (if (nil? value)
      nil
      (function value)))
</pre>
<p>If its input value is non-<code>nil</code>, it calls the supplied function, just as in the identity monad. Recall that this function represents the rest of the computation, i.e. all following steps. If the value is <code>nil</code>, then <code>m-bind</code> returns <code>nil</code> and the rest of the computation is never called. You can thus call <code>(f 1)</code>, yielding 2 as before, but also <code>(f nil)</code> yielding <code>nil</code>, without having to add <code>nil</code>-detecting code after every step of your computation, because <code>m-bind</code> does it behind the scenes.</p>
<p>In <a href="http://onclojure.com/2009/03/06/a-monad-tutorial-for-clojure-programmers-part-2/">part 2</a>, I will introduce some more monads, and look at some generic functions that can be used in any monad to aid in composing computations.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onclojure.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onclojure.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onclojure.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onclojure.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/onclojure.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/onclojure.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/onclojure.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/onclojure.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onclojure.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onclojure.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onclojure.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onclojure.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onclojure.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onclojure.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onclojure.com&#038;blog=5872423&#038;post=14&#038;subd=onclojure&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://onclojure.com/2009/03/05/a-monad-tutorial-for-clojure-programmers-part-1/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/305e4cf66ef1179f7e95981b1520ba1a?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">khinsen</media:title>
		</media:content>
	</item>
	</channel>
</rss>
