Note: This website is archived. For up-to-date information about D projects and development, please visit wiki.dlang.org.

Changes between Version 1 and Version 2 of LearningD-DataStructures

Show
Ignore:
Author:
bmeck (IP: 70.112.111.165)
Timestamp:
05/25/07 06:00:25 (17 years ago)
Comment:

Finished up list of data types and added link to next page

Legend:

Unmodified
Added
Removed
Modified
  • LearningD-DataStructures

    v1 v2  
    2727||creal||complex real|| 
    2828=== Textual Data Structures === 
     29||char||character|| 
     30||wchar||wide character|| 
     31||dchar||D character|| 
     32||(dchar/wchar/char)[]||string|| 
    2933=== Collection Data Structures === 
    30 [] 
     34||[]||Array|| 
     35||[ void ]||Associative Array|| 
     36||N/A||Tuple|| 
    3137=== Boolean Data === 
    32 bool    boolean value 
     38||bool||boolean value|| 
    3339=== Structs === 
     40Structs are Custom Data Structures 
    3441=== Classes === 
    35 === Functions === 
     42Classes are Custom Data Structures 
    3643=== Pointers and Void Type Data Structures === 
    3744||*||the address of the data structure|| 
    3845||void||no type needed, it could be any data structure|| 
     46=== Functions === 
     47Functions are Unique 
     48 
     49[wiki:LearningD-DataTypes-Numeric Next: Numeric Data in D]