<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>DigitalGhost</author_name>
  <author_url>https://blog.hatena.ne.jp/DigitalGhost/</author_url>
  <blog_title>デ-mk6</blog_title>
  <blog_url>https://dechimal.hatenadiary.com/</blog_url>
  <categories>
    <anon>Haskell</anon>
  </categories>
  <description>フィボナッチ数列 fib = 0:1:zipWith (+) fib (tail fib)で、これを新しい名前を作ることなく、かつ無名関数を書かずにやってみる。まずは関数の形になおす。 fib = let fib' x y = x:fib' y (x+y) in fib' 0 1fib'のパターンを書かないように変形する。 fib = let fib' = curry $ fst &amp;&amp;&amp; (snd &amp;&amp;&amp; uncurry (+) &gt;&gt;&gt; uncurry fib') &gt;&gt;&gt; uncurry (:) in fib' 0 1Arrowさまさま…。次にfib'を、fixと無名関数使って変形。 (cur…</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Fdechimal.hatenadiary.com%2Fentry%2F20091029%2F1256835684&quot; title=&quot;フィボナッチ数列をアレする - デ-mk6&quot; class=&quot;embed-card embed-blogcard&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;display: block; width: 100%; height: 190px; max-width: 500px; margin: 10px 0px;&quot;&gt;&lt;/iframe&gt;</html>
  <image_url></image_url>
  <provider_name>Hatena Blog</provider_name>
  <provider_url>https://hatena.blog</provider_url>
  <published>2009-10-29 02:01:24</published>
  <title>フィボナッチ数列をアレする</title>
  <type>rich</type>
  <url>https://dechimal.hatenadiary.com/entry/20091029/1256835684</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
