FPC New Features 2.4.2

From Free Pascal wiki
Revision as of 20:15, 24 December 2010 by Jonas (talk | contribs) (for-in loop)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

About this page

Below you can find a list of new features introduced since the previous release, along with some background information and examples.

All systems

Language

For-in loop support

  • Overview: for-in loops allow for easy iterating over the contents of a container type, as well as over some primitive types (arrays, strings, sets) using a uniform syntax.
  • Notes: The basic implementation is Delphi-compatible, but in addition FPC also supports some extra functionality. This functionality is described on the page below.
  • More information: for-in_loop