<?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>Stateless</title>
	<atom:link href="http://alexleighton.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://alexleighton.wordpress.com</link>
	<description>takeWhile Interesting [(Thought 1) ..]</description>
	<lastBuildDate>Fri, 01 Jan 2010 03:35:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='alexleighton.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Stateless</title>
		<link>http://alexleighton.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://alexleighton.wordpress.com/osd.xml" title="Stateless" />
	<atom:link rel='hub' href='http://alexleighton.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Intro to Ocamlgraph</title>
		<link>http://alexleighton.wordpress.com/2009/04/22/intro-to-ocamlgraph/</link>
		<comments>http://alexleighton.wordpress.com/2009/04/22/intro-to-ocamlgraph/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 00:38:59 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[OCaml]]></category>
		<category><![CDATA[Ocamlgraph]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[functor]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[ocamlgraph]]></category>

		<guid isPermaLink="false">http://alexleighton.wordpress.com/?p=60</guid>
		<description><![CDATA[Ocamlgraph is a library for OCaml that gives the programmer several different types of graph data structure. Basically, you can mix and match the aspects of the graph that you want, finally resulting in an implementation you can use. Along with this, the library provides a number of common algorithms that work on any of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexleighton.wordpress.com&amp;blog=49827&amp;post=60&amp;subd=alexleighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://alexleighton.wordpress.com/2009/04/22/intro-to-ocamlgraph/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c256b828d21ed9ecdc5acc33f22c6bc1?s=96&#38;d=identicon" medium="image">
			<media:title type="html">alexleighton</media:title>
		</media:content>
	</item>
		<item>
		<title>More Functors</title>
		<link>http://alexleighton.wordpress.com/2009/04/10/more-functors/</link>
		<comments>http://alexleighton.wordpress.com/2009/04/10/more-functors/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 18:21:24 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[OCaml]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[functor]]></category>
		<category><![CDATA[set]]></category>

		<guid isPermaLink="false">http://alexleighton.wordpress.com/?p=46</guid>
		<description><![CDATA[Aside from the features mentioned in my previous article, functors can also provide you with the ability to add more functions to the resulting structure of a functor you have no control over. Take for instance the Set module in OCaml. Set.Make is a functor that creates the Set structure, given a structure of type [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexleighton.wordpress.com&amp;blog=49827&amp;post=46&amp;subd=alexleighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://alexleighton.wordpress.com/2009/04/10/more-functors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c256b828d21ed9ecdc5acc33f22c6bc1?s=96&#38;d=identicon" medium="image">
			<media:title type="html">alexleighton</media:title>
		</media:content>
	</item>
		<item>
		<title>Functors for the Beginner</title>
		<link>http://alexleighton.wordpress.com/2009/04/09/functors-for-the-beginner/</link>
		<comments>http://alexleighton.wordpress.com/2009/04/09/functors-for-the-beginner/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 07:14:33 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[OCaml]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[functor]]></category>
		<category><![CDATA[stack]]></category>

		<guid isPermaLink="false">http://alexleighton.wordpress.com/?p=31</guid>
		<description><![CDATA[Let&#8217;s talk about Functors in the OCaml programming language. I will assume that you know about modules in OCaml, if not you can refresh by reading the manual. Functors are “functions” from structures to structures. The above is probably the best definition I&#8217;ve seen of a functor. It touches on what I see as the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexleighton.wordpress.com&amp;blog=49827&amp;post=31&amp;subd=alexleighton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://alexleighton.wordpress.com/2009/04/09/functors-for-the-beginner/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c256b828d21ed9ecdc5acc33f22c6bc1?s=96&#38;d=identicon" medium="image">
			<media:title type="html">alexleighton</media:title>
		</media:content>
	</item>
	</channel>
</rss>
