0%

13-letter words containing fold

  • fanfold paper — continuous paper perforated at regular intervals, as used in a dot-matrix printer
  • 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.
  • folded dipole — a type of aerial, widely used with television and VHF radio receivers, consisting of two parallel dipoles connected together at their outer ends and fed at the centre of one of them. The length is usually half the operating wavelength
  • folding chair — a chair that can be collapsed flat for easy storage or transport.
  • folding money — paper money.
  • folding press — a fall in wrestling won by folding one's opponent's legs up to his head and pressing his shoulders to the floor
  • foldoc source — The source text of FOLDOC is a single plain text file. FOLDOC is also available on paper from your local printer but, at 700,000+ words, that would be about 2000 pages.
  • little alfold — a plain in NW Hungary and S Slovakia.
  • scottish fold — a breed of medium-sized short-haired cat with folded ears
  • threefoldness — the state or condition of being threefold
  • unblindfolded — not blindfolded

On this page, we collect all 13-letter words with FOLD. It’s easy to find right word with a certain length. It is the easiest way to find 13-letter word that contains FOLD to use in Scrabble or Crossword puzzles.

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