added slides

This commit is contained in:
JKF
2026-06-01 22:21:22 +02:00
parent 51da75c7db
commit 4792bf29fb
13 changed files with 26 additions and 123 deletions
+16
View File
@@ -0,0 +1,16 @@
@inproceedings{minamide_holes_1998,
author = {Minamide, Yasuhiko},
title = {A functional representation of data structures with a hole},
year = {1998},
isbn = {0897919793},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/268946.268953},
doi = {10.1145/268946.268953},
abstract = {Data structures with a hole, in other words data structures with an uninitialized field, are useful to write efficient programs: they enable us to construct functional data structures flexibly and write functions such as append and map as tail recursive functions. In this paper we present an approach to introducing data structures with a hole into call-by-value functional programming languages like ML. Data structures with a hole are formalized as a new form of λ-abstraction called hole abstraction. The novel features of hole abstraction are that expressions inside hole abstraction are evaluated and application is implemented by destructive update of a hole. We present a simply typed call-by-value λ-calculus extended with hole abstractions. Then we show a compilation method of hole abstraction and prove correctness of the compilation.},
booktitle = {Proceedings of the 25th ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages},
pages = {7584},
numpages = {10},
location = {San Diego, California, USA},
series = {POPL '98}
}