@@ -1475,7 +1475,7 @@ <h5><a id="l-identityasync"></a> <a href="#contents">≡</a> <a href="https://gi
14751475monad</ a > ,
14761476which explains the "monadish". Fortunately one usually does not want nested
14771477promises in which case the approximation can be close enough.</ p >
1478- < h5 > < a id ="l-select-applicative "> </ a > < a href ="#contents "> ≡</ a > < a href ="https://github.com/calmm-js/partial.lenses/blob/master/README.md#l-Constant "> ■</ a > < a href ="#l-select-applicative " title ="L.Select: Applicative "> < code > L.Select ~> Applicative</ code > </ a > < small > < sup > v14.0.0</ sup > </ small > </ h5 >
1478+ < h5 > < a id ="l-select-applicative "> </ a > < a href ="#contents "> ≡</ a > < a href ="https://github.com/calmm-js/partial.lenses/blob/master/README.md#l-select-applicative "> ■</ a > < a href ="#l-select-applicative " title ="L.Select: Applicative "> < code > L.Select ~> Applicative</ code > </ a > < small > < sup > v14.0.0</ sup > </ small > </ h5 >
14791479< p > < code > L.Select</ code > is the < a href ="https://github.com/rpominov/static-land/blob/master/docs/spec.md "> Static
14801480Land</ a >
14811481compatible
@@ -1492,7 +1492,7 @@ <h5><a id="l-select-applicative"></a> <a href="#contents">≡</a> <a href="https
14921492< p > It is a monoid, because it satisfies the Monoid laws:</ p >
14931493< pre > < code class ="hljs lang-js "> var MonoidLaws = (M, x, y, z) => ({
14941494 associativity: test(M.concat(M.concat(x, y), z), M.concat(x, M.concat(y, z))),
1495- leftIdentity: test(M.concat(M.empty(), x), x) ,
1495+ leftIdentity: test(M.concat(M.empty(), x), x),
14961496 rightIdentity: test(M.concat(x, M.empty()), x)
14971497})
14981498
@@ -3867,7 +3867,7 @@ <h4><a id="use-of-undefined"></a> <a href="#contents">≡</a> <a href="https://g
38673867value.</ li >
38683868< li > < code > undefined</ code > is not a valid JSON value and does not get mixed up with valid
38693869JSON values.</ li >
3870- < li > We can form a < a href ="#l-select "> monoid over JavaScript values by treating < code > undefined</ code > as
3870+ < li > We can form a < a href ="#l-select-applicative "> monoid over JavaScript values by treating < code > undefined</ code > as
38713871zero</ a > .</ li >
38723872</ ul >
38733873< p > Some libraries use < code > null</ code > , but that is arguably a poor choice, because < code > null</ code > is
0 commit comments