Lens
1 program
Added 2026-02-12T11:10:40Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 1c330dc622 · authored 2026-02-12T12:11:09+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Bidirectional Swap Lens
Provenance: commit 1c330dc622 · authored 2026-02-12T12:11:09+01:00 · agent claude-code · model sonnet · WebSearch disabled
(* Simple Lens example - bidirectional get/put *)
let swap : (string * string) <-> (string * string) =
lens snd <-> fst
in fun (x, y) -> (y, x)
(* Test the lens *)
let result = swap.get ("hello", "world")