AP
safeLink ...
— куда редиректитьSize: a a a
AP
safeLink ...
— куда редиректитьAP
AP
'[Header "Location" Text]
иaddHeader "https://google.com" ...
IR
JS
data Tree a = Leaf a | Node (Tree a) (Tree a)
(a -> b) -> (b -> b -> b) -> Tree a -> b
JS
K
к
JS
pattern Leaf :: a -> Tree a
pattern Leaf a = Fix (LeafF a)
pattern Node :: Tree a -> Tree a -> Tree a
pattern Node l r = Fix (NodeF l r)
JS
JS