Boxes go bananas: Encoding higher-order abstract syntax with parametric polymorphism*

  • Authors:
  • Geoffrey Washburn;Stephanie Weirich

  • Affiliations:
  • Department of computer and information science, university of pennsylvania, philadelphia, pennsylvania 19104, usa (email: geoffw@cis.upenn.edu, sweirich@cis.upenn.edu);Department of computer and information science, university of pennsylvania, philadelphia, pennsylvania 19104, usa (email: geoffw@cis.upenn.edu, sweirich@cis.upenn.edu)

  • Venue:
  • Journal of Functional Programming
  • Year:
  • 2008

Quantified Score

Hi-index 0.00

Visualization

Abstract

Higher-order abstract syntax is a simple technique for implementing languages with functional programming. Object variables and binders are implemented by variables and binders in the host language. By using this technique, one can avoid implementing common and tricky routines dealing with variables, such as capture-avoiding substitution. However, despite the advantages this technique provides, it is not commonly used because it is difficult to write sound elimination forms (such as folds or catamorphisms) for higher-order abstract syntax. To fold over such a data type, one must either simultaneously define an inverse operation (which may not exist) or show that all functions embedded in the data type are parametric. In this paper, we show how first-class polymorphism can be used to guarantee the parametricity of functions embedded in higher-order abstract syntax. With this restriction, we implement a library of iteration operators over data structures containing functionals. From this implementation, we derive “fusion laws” that functional programmers may use to reason about the iteration operator. Finally, we show how this use of parametric polymorphism corresponds to the Schürmann, Despeyroux and Pfenning method of enforcing parametricity through modal types. We do so by using this library to give a sound and complete encoding of their calculus into System . This encoding can serve as a starting point for reasoning about higher-order structures in polymorphic languages.