Difference between revisions of "FPC New Features 2.4.2"

From Free Pascal wiki
Jump to navigationJump to search
Line 15: Line 15:
 
* '''More information''': http://svn.freepascal.org/svn/fpc/trunk/tests/test/tabstract1.pp
 
* '''More information''': http://svn.freepascal.org/svn/fpc/trunk/tests/test/tabstract1.pp
  
== See also ==
+
== New Features from other versions ==
* [[User Changes 2.4.2]]
+
{{Navbar Lazarus Release Notes}}
  
 
[[Category:FPC New Features by release]]
 
[[Category:FPC New Features by release]]
 
[[Category:Release Notes]]
 
[[Category:Release Notes]]

Revision as of 20:24, 9 May 2015

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

Sealed and Abstract classes

New Features from other versions