Skip to content

Instantly share code, notes, and snippets.

@slikts
Forked from Maxdamantus/gist:1393215
Last active March 15, 2019 12:52
Show Gist options
  • Save slikts/cfc9ef3373e253563de2e702b1222e0e to your computer and use it in GitHub Desktop.
Save slikts/cfc9ef3373e253563de2e702b1222e0e to your computer and use it in GitHub Desktop.
Non-leaky implementation of Crockford's make_sealer
type Box<A> = () => A | null;
type Sealer<A> = {
seal(value: A): Box<A>;
unseal(box: Box<A>): A | null;
}
const makeSealer = <A>(): Sealer<A> => {
let open: Box<A> | null = null;
return {
seal(value: A): Box<A> {
const box = (): A | null => (open === box ? value : null);
return box;
},
unseal(box: Box<A>): A | null {
open = box;
const result = box();
open = null;
return result;
},
};
};
const s = makeSealer();
const o = { a: 1 };
const box = s.seal(o);
console.log(s.unseal(box));
@slikts
Copy link
Author

slikts commented Aug 9, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment