.NET
mondrian.txt
Associated article: Mondrian for .NET
Tags: .NET
Published source code accompanying the article by Jason Smith, Nigel Perry, and Erik Meijer in which they discuss Mondrian, a modern purely functional language specifically designed to leverage the possibilities of the .NET Framework. Also see MONDRIAN.ZIP.
Mondrian for .NET
by Jason Smith, Nigel Perry, and Erik Meijer
Listing One
delegate bool SortComp(Object lxpr, Object rxpr);
static void QSort(Object[] Data, SortComp Cmp)
{ QSortPart(Data, 0, Data.Length-1, Cmp);
}
static void QSortPart(Object[] Data, int Left, int ...


