Dependent type providers

  • Authors:
  • David Raymond Christiansen

  • Affiliations:
  • IT University of Copenhagen, Copenhagen, Denmark

  • Venue:
  • Proceedings of the 9th ACM SIGPLAN workshop on Generic programming
  • Year:
  • 2013

Quantified Score

Hi-index 0.00

Visualization

Abstract

Type providers, pioneered in the F# programming language, are a practical and powerful means of gaining the benefits of a modern static type system when working with data schemas that are defined outside of the programming language, such as relational databases. F# type providers are implemented using a form of compile-time code generation, which requires the compiler to expose an internal API and can undermine type safety. We show that with dependent types it is possible to define a type provider mechanism that does not rely on code generation. Using this mechanism, a type provider becomes a kind of generic program that is instantiated for a particular external schema, which can be represented using an ordinary datatype. Because these dependent type providers use the ordinary abstraction mechanisms of the type system, they preserve its safety properties. We evaluate the practicality of this technique and explore future extensions.