lambda-auth icon indicating copy to clipboard operation
lambda-auth copied to clipboard

authenticated data structures, generically

Results 3 lambda-auth issues
Sort by recently updated
recently updated
newest added

I was not able to build the example using make. It first reports the following error: Makefile:145: .depend: No such file or directory make: **\* No rule to make target...

Workaround: include a minimal type and method: ``` type useless = Useless ``` --- ``` f_useless () = auth Useless ```

This example causes stack overflow: ``` type tree = Tip | Bin of (tree * int * tree) authtype | UnBin of (tree * int * tree) ``` This workaround...

bug