annotate demo/listFun.urs @ 2279:32a407902d3b

Rewrite LRU cache. Now uses one big hash table and is less buggy.
author Ziv Scully <ziv@mit.edu>
date Wed, 11 Nov 2015 20:01:48 -0500
parents ab3177746c78
children
rev   line source
adamc@386 1 functor Make(M : sig
adamc@386 2 type t
adamc@398 3 val toString : t -> string
adamc@398 4 val fromString : string -> option t
adamc@386 5 end) : sig
adamc@386 6 val main : unit -> transaction page
adamc@386 7 end