0%

Words starting with fold

4 letter words starting with fold

  • fold — to confine (sheep or other domestic animals) in a fold.
  • fold case — case sensitivity
  • fold function — (programming)   In functional programming, fold or "reduce" is a kind of higher-order function that takes as arguments a function, an initial "accumulator" value and a data structure (often a list). In Haskell, the two flavours of fold for lists, called foldl and foldr are defined like this: foldl :: (a -> b -> a) -> a -> [b] -> a foldl f z [] = z foldl f z (x:xs) = foldl f (f z x) xs foldr :: (a -> b -> b) -> b -> [a] -> b foldr f z [] = z foldr f z (x:xs) = f x (foldr f z xs) In both cases, if the input list is empty, the result is the value of the accumulator, z. If not, foldl takes the head of the list, x, and returns the result of recursing on the tail of the list using (f z x) as the new z. foldr returns (f x q) where q is the result of recursing on the tail. The "l" and "r" in the names refer to the associativity of the application of f. Thus if f = (+) (the binary plus operator used as a function of two arguments), we have: foldl (+) 0 [1, 2, 3] = (((0 + 1) + 2) + 3 (applying + left associatively) and foldr (+) 0 [1, 2, 3] = 0 + (1 + (2 + 3)) (applying + right associatively). For +, this makes no difference but for an non-commutative operator it would.
  • fold in — In cooking, if you fold in an ingredient or fold it into the other ingredients, you mix it very gently into the other ingredients.
  • fold limb — either of the sides of a geological fold

5 letter words starting with fold

  • folds — Plural form of fold.

6 letter words starting with fold

  • folded — Simple past tense and past participle of fold.
  • folden — Alternative past participle of fold.
  • folder — directory
  • foldoc — Free On-line Dictionary of Computing
  • foldup — something, as a chair or bed, that can be folded up and stored away when not in use.

7 letter words starting with fold

  • folders — Plural form of folder.
  • folding — to confine (sheep or other domestic animals) in a fold.
  • foldout — a page larger than the trim size of a magazine or book, folded one or more times so as not to extend beyond the pages; gatefold.
  • folding chair — a chair that can be collapsed flat for easy storage or transport.
  • folding door — a door with hinged sections that can be folded flat against one another when opened.

8 letter words starting with fold

  • fold-out — a page larger than the trim size of a magazine or book, folded one or more times so as not to extend beyond the pages; gatefold.
  • foldable — to bend (cloth, paper, etc.) over upon itself.
  • foldaway — designed to be folded out of the way when not in use: a foldaway bed.
  • foldback — (in multitrack recording) a process for returning a signal to a performer instantly
  • foldboat — faltboat.

9 letter words starting with fold

  • fold-down — designed to be folded out for use and collapsed when not in use: a fold-down tray on the back of an airplane seat; a fold-down trailer for camping.
  • foldboats — Plural form of foldboat.
  • folderols — Plural form of folderol.

15 letter words starting with fold

  • fold-and-thrust belt — a linear or arcuate region of the earth's surface that has been subjected to severe folding and thrust faulting

On this page, we collect all words starting with FOLD. To make easier to find the right word we have divided all 38 words to groups according to their length. So you should go to appropriate page if can’t find the word that beginning with FOLD. that you are searching. Also you can use this page in Scrabble.

Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?