Comparison of programming languages (associative array): Difference between revisions

Content deleted Content added
m Haskell: WP:LINKs: update-standardize, needless WP:PIPEs > WP:NOPIPEs. MOS:FIRSTABBReviation clarify, define before WP:ABBR in parentheses.
m Delphi: WP:LINK update-standardize. Small WP:COPYEDITs WP:EoS WP:TERSE.
Line 243:
 
===Delphi===
[[Delphi (programming languagesoftware)|Delphi]] supports several standard containers, including TDictionary<T>:
 
<syntaxhighlight lang="delphi">
Line 265:
</syntaxhighlight>
 
Versions ofPre-2009 Delphi prior to 2009versions do not offer direct support for associative arrays directly. However, associativeSuch arrays can be simulated using the TStrings class:
 
<syntaxhighlight lang="delphi">