diff --git a/404.html b/404.html index 742a9da6..dcd64e5e 100644 --- a/404.html +++ b/404.html @@ -12,7 +12,7 @@ - +
diff --git a/assets/js/0058a559.5addc267.js b/assets/js/0058a559.7f5bdfa5.js similarity index 69% rename from assets/js/0058a559.5addc267.js rename to assets/js/0058a559.7f5bdfa5.js index 3f685b36..2c192134 100644 --- a/assets/js/0058a559.5addc267.js +++ b/assets/js/0058a559.7f5bdfa5.js @@ -1 +1 @@ -"use strict";(self.webpackChunkwebsite=self.webpackChunkwebsite||[]).push([[108],{1865:(e,n,r)=>{r.r(n),r.d(n,{assets:()=>l,contentTitle:()=>s,default:()=>d,frontMatter:()=>a,metadata:()=>c,toc:()=>i});var t=r(4848),o=r(8453);const a={id:"every"},s=void 0,c={id:"every",title:"every",description:"every() function",source:"@site/docs/every.md",sourceDirName:".",slug:"/every",permalink:"/docs/every",draft:!1,unlisted:!1,tags:[],version:"current",frontMatter:{id:"every"},sidebar:"api",previous:{title:"each",permalink:"/docs/each"},next:{title:"evolve",permalink:"/docs/evolve"}},l={},i=[{value:"every() function",id:"every-function",level:2},{value:"Example",id:"example",level:2}];function u(e){const n={a:"a",code:"code",h2:"h2",p:"p",pre:"pre",...(0,o.R)(),...e.components};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(n.h2,{id:"every-function",children:"every() function"}),"\n",(0,t.jsxs)(n.p,{children:["Returns true if all of the values in Iterable/AsyncIterable pass the ",(0,t.jsx)(n.code,{children:"f"})," truth test."]}),"\n",(0,t.jsx)("b",{children:"Signature:"}),"\n",(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-typescript",children:"declare function every(f: Arrow, iterable: A): true;\n\ndeclare function every(f: (a: A) => B, iterable: Iterable): boolean;\n\ndeclare function every(f: (a: A) => B, iterable: AsyncIterable): Promise