Difference between revisions of "Research papers/Functional pearls"

From HaskellWiki
Jump to navigation Jump to search
m (→‎Online: update broken link)
(Add pearls from ICFP and Haskell Symposium 2020)
(2 intermediate revisions by 2 users not shown)
Line 36: Line 36:
 
* [https://www.cs.nott.ac.uk/~pszgmh/123.pdf It’s Easy As 1,2,3] - Graham Hutton.
 
* [https://www.cs.nott.ac.uk/~pszgmh/123.pdf It’s Easy As 1,2,3] - Graham Hutton.
   
  +
;2020
  +
* [https://dl.acm.org/doi/10.1145/3408974 Achieving high-performance the functional way] - Bastian Hagedorn, Johannes Lenfers, Thomas Kœhler, Xueying Qin, Sergei Gorlatch, Michel Steuwer.
  +
* [https://doi.org/10.1145/3408990 Parsing with zippers] - Pierce Darragh, Michael D. Adams
  +
* [https://doi.org/10.1145/3408998 Separation Logic for Sequential Programs] - Arthur Charguéraud
  +
* [https://doi.org/10.1145/3409004 Strong Functional Pearl: Harper's Regular-Expression Matcher in Cedille] - Aaron Stump, Chris Jenkins, Stephan Spahn, Colin McDonald
  +
* [https://dl.acm.org/doi/10.1145/3409006 The simple essence of algebraic subtyping: principal type inference with subtyping made easy] - Lionel Parreaux
  +
* [https://doi.org/10.1145/3406088.3409024 A Graded Monad for Deadlock-Free Concurrency] - Andrej Ivašković, Alan Mycroft
  +
* [https://dl.acm.org/doi/10.1145/3406088.3409026 Finger Trees explained anew, and slightly simplified] - Koen Claessen.
  +
* [https://doi.org/10.1145/3406088.3409015 Stitch: The Sound Type-Indexed Type Checker] - Richard A. Eisenberg
  +
* [https://doi.org/10.1145/3406088.3409019 Type Your Matrices for Great Good: A Haskell Library of Typed Matrices and Applications] - Armando João Isaías Ferreira dos Santos, Jose Nuno Oliveira
 
;2018
 
;2018
 
* [http://www.cs.ox.ac.uk/jeremy.gibbons/publications/proyo.pdf What You Needa Know about Yoneda: Profunctor Optics and the Yoneda Lemma] - Guillaume Boisseau and Jeremy Gibbons.
 
* [http://www.cs.ox.ac.uk/jeremy.gibbons/publications/proyo.pdf What You Needa Know about Yoneda: Profunctor Optics and the Yoneda Lemma] - Guillaume Boisseau and Jeremy Gibbons.
Line 153: Line 163:
 
* [http://www.cs.ox.ac.uk/ralf.hinze/publications/ICFP00.ps.gz Deriving Backtracking Monad Transformers] - Ralf Hinze.
 
* [http://www.cs.ox.ac.uk/ralf.hinze/publications/ICFP00.ps.gz Deriving Backtracking Monad Transformers] - Ralf Hinze.
 
* [http://www.cis.upenn.edu/~bcpierce/papers/rsr.ps Recursive subtyping revealed] - Vladimir Gapeyev, Michael Y. Levin and Benjamin C. Pierce.
 
* [http://www.cis.upenn.edu/~bcpierce/papers/rsr.ps Recursive subtyping revealed] - Vladimir Gapeyev, Michael Y. Levin and Benjamin C. Pierce.
* [http://research.microsoft.com/Users/simonpj/Papers/financial-contracts/contracts-icfp.ps.gz Composing contracts: an adventure in financial engineering] - Simon Peyton Jones, Jean-Marc Eber and Julian Seward.
+
* [https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.34.493&rep=rep1&type=pdf Composing contracts: an adventure in financial engineering] - Simon Peyton Jones, Jean-Marc Eber and Julian Seward.
   
 
;1999
 
;1999

Revision as of 11:27, 6 March 2023

Functional pearls are elegant, instructive examples of functional programming. They are supposed to be fun, and they teach important programming techniques and fundamental design principles. They traditionally appear in The Journal of Functional Programming and and at ICFP and affiliated workshops.

History

The history of functional pearls is covered by:

There have been many functional pearls in JFP and and some others at ICFP and the Haskell Workshop. There is also a collection of them in The Fun of Programming.

The pearls tend to concentrate on:

  • Examples of program calculation and proof
  • Neat presentations of new or old data structures
  • Interesting applications and techniques

Some advice on writing pearls for JFP is available in this editorial.

Online

Functional pearls available online.

2021
2020
2018
2017
2016
2015
2013.
2012
2011
2010
2009
2008
2007
2006
2005
2004
2003
2002
2001
2000
1999
1998
1997
1996
1994
1993
1992
1991
1988

Potential pearls

Unpublished pearls.