Updated Roadmap (markdown)

This commit is contained in:
Andreas Rumpf 2015-01-28 19:35:30 +01:00
parent 7f5aedabff
commit 1c87f2f437
1 changed files with 6 additions and 6 deletions

View File

@ -6,6 +6,12 @@
<th>Notes</th>
</tr>
<tr>
<td>Automatic dereference in more contexts</td>
<td>implemented but needs to be activated via the .experimental switch</td>
<td>a.f() and f(a) are rewritten to f(a[]) if overloading resolution fails completely. This rewrite is only performed for the first argument</td>
</tr>
<tr>
<td>Implement static[T] properly</td>
<td>for version 1.0</td>
@ -18,12 +24,6 @@
<td>like <tt class="docutils literal"><span class="pre">fields</span></tt> and destructors an assignment operator needs to be lifted</td>
</tr>
<tr>
<td>Automatic dereference in more contexts</td>
<td>might make into 1.0</td>
<td>important to be able to write more generic containers easily; current plan is rewrite a.f() to f(a[]) but not in further contexts</td>
</tr>
<tr>
<td>asFunc pragma</td>
<td>After 1.0</td>