mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-26 11:11:47 +00:00
This will avoid test failures due to minor changes in skylighting versions, e.g. #9589.
15 lines
1.2 KiB
HTML
15 lines
1.2 KiB
HTML
<h1 id="lhs-test">lhs test</h1>
|
|
<p><code>unsplit</code> is an arrow that takes a pair of values and combines them to
|
|
return a single value:</p>
|
|
<div class="sourceCode" id="cb1"><pre class="sourceCode haskell literate"><code class="sourceCode haskell"><span id="cb1-1"><a href="#cb1-1" aria-hidden="true" tabindex="-1"></a><span class="ot">unsplit ::</span> (<span class="dt">Arrow</span> a) <span class="ot">=></span> (b <span class="ot">-></span> c <span class="ot">-></span> d) <span class="ot">-></span> a (b, c) d</span>
|
|
<span id="cb1-2"><a href="#cb1-2" aria-hidden="true" tabindex="-1"></a>unsplit <span class="ot">=</span> arr <span class="op">.</span> <span class="fu">uncurry</span></span>
|
|
<span id="cb1-3"><a href="#cb1-3" aria-hidden="true" tabindex="-1"></a> <span class="co">-- arr (\op (x,y) -> x `op` y)</span></span></code></pre></div>
|
|
<p><code>(***)</code> combines two arrows into a new arrow by running the two arrows on a
|
|
pair of values (one arrow on the first item of the pair and one arrow on the
|
|
second item of the pair).</p>
|
|
<pre><code>f *** g = first f >>> second g</code></pre>
|
|
<p>Block quote:</p>
|
|
<blockquote>
|
|
<p>foo bar</p>
|
|
</blockquote>
|