Я изучаю продолжения с разделителями и в настоящее время играю с их отбрасыванием, чтобы получить эффект, подобный повышению исключений.
Вот что вызывает у меня проблемы:
const structure = type => cons => {
const f = (f, args) =>
({["run" + type]: f, [Symbol.toStringTag]: type, [Symbol("args")]: args});
return cons(f);
};
const Cont = structure("Cont")
(Cont => f => Cont(f));
const runCont = tf => k =>
tf.runCont(k);
const reset = tf =>
of(tf.runCont(id));
const shift = f =>
Cont(k => f(k).runCont(id));
const of = x =>
Cont(k => k(x));
const liftM2 = f => tf => tg =>
of(runCont(tf) (x => runCont(tg) (y => f(x) (y))));
const id = x => x;
const mulM = liftM2(x => y => x * y);
const addM = liftM2(x => y => x + y);
const subM = liftM2(x => y => x - y);
const z1 = mulM(of(5))
(reset
(addM
(shift(k => of(3)))
(of(3)))
).runCont(id); // 5 * 3 = 15 (as expected)
const z2 = mulM(of(5))
(reset // A
(mulM // B
(addM
(shift(k => of(3))) // C should unwind up to A instead of B
(of(3)))
(of(4)))
).runCont(id); // 5 * 3 * 4 = 60 (but 15 expected)
console.log(z1);
console.log(z2);
Кажется, что я могу разматывать стек только одним кадром.Это из-за shift
/ reset
или из-за недостатка в моей реализации?
[EDIT]
Я получил его в Haskell , то есть проблема реализации:
reset :: ((a -> a) -> a) -> (a -> r) -> r
reset k f = f $ k id
shift :: ((a -> r) -> (r -> r) -> r) -> (a -> r) -> r
shift f k = f k id
return :: a -> (a -> r) -> r
return a k = k a
liftM2 :: (a -> b -> c) -> ((a -> r) -> r) -> ((b -> r) -> r) -> (c -> r) -> r
liftM2 f ma mb k = ma $ \a -> mb $ \b -> k (f a b)
example :: Num a => (a -> r) -> r
example = liftM2 (*) (return 5) (reset (liftM2 (*) (return 3) (liftM2 (+) (return 2) (shift (\k -> return 3)))))