DeepArrow

From HaskellWiki
Revision as of 03:37, 15 January 2007 by Conal (talk | contribs) (initial)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The DeepArrow library is a framework for composable "editors" of pure values.

Introduction

By an "editor", I mean a function that targets a transformation at some part of a value, such as the first half of the second half of a value of type (a,(b,c)). In such a case, the transformation being targeted would have type b -> b', and the overall transformation would have type (a,(b,c)) -> (a,(b',c)).

If you've fooled around with arrows, you might guess that the arrow methods first and second having something to do with this game, and you'd be right. The main idea of DeepArrow is to play with compositions of first and second and of an analogous third combinator called result. I was stunned to realize that arbitrarily complex value editors can be made by stringing together compositions of these three combinators and delighted to find that the composition chains directly spell out the paths to the value subpart to be edited.

Background

The inspiration for value-editing paths came while I was looking for a way for non-programmers to be able to create functional images. I've had a growing intuition over the last fifteen years that media authoring tools can be usefully looked at as environments for functional programming. I'd been wondering how to map a user's gestures into operations on a functional program.

...