summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2012-11-11 22:03:41 +0100
committerAraq <rumpf_a@web.de>2012-11-11 22:03:41 +0100
commit48a62af3b13015cc7eda194b9f6ec7e194456e74 (patch)
treefc8b0be321a4461fbdc51c94415ca681a8ddee5a /doc
parenta31a5f9c810948b232356b7fe225b238dad0d6d6 (diff)
downloadNim-48a62af3b13015cc7eda194b9f6ec7e194456e74.tar.gz
implemented 'tags' pragma
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/manual.txt6
1 files changed, 1 insertions, 5 deletions
diff --git a/doc/manual.txt b/doc/manual.txt
index 414c43874..c97e4ef5c 100755
--- a/doc/manual.txt
+++ b/doc/manual.txt
@@ -2850,11 +2850,9 @@ possibly raised exceptions; the algorithm operates on ``p``'s call graph:
 Tag tracking
 ~~~~~~~~~~~~
 
-**Note**: Tag tracking is not yet implemented!
-
 The exception tracking is part of Nimrod's `effect system`:idx:. Raising an
 exception is an *effect*. Other effects can also be defined. A user defined 
-effect is a means to *tag* a routine and perform checks against this tag:
+effect is a means to *tag* a routine and to perform checks against this tag:
 
 .. code-block:: nimrod
   type IO = object ## input/output effect
@@ -3093,8 +3091,6 @@ To be written.
 Return Type Inference
 ~~~~~~~~~~~~~~~~~~~~~
 
-**Note**: ``auto`` is not yet implemented.
-
 If a type class is used as the return type of a proc and it won't be bound to
 a concrete type by some of the proc params, Nimrod will infer the return type
 from the proc body. This is usually used with the ``auto`` type class:
:18:10 +0200 committer Araq <rumpf_a@web.de> 2015-07-24 01:04:43 +0200 todo.txt updates' href='/ahoang/Nim/commit/todo.txt?h=devel&id=18823a315e5a32d125a631f8ac8710be6102a95e'>18823a315 ^
05e39cf6a ^
e80840c40 ^
f4a0400de ^
fe30ec83e ^
b7c806381 ^

dbf9117c5 ^
20774ad43 ^
a2bb7d4c7 ^



0c3299383 ^
e27ab3673 ^
2de99653d ^


1088814e5 ^
2de99653d ^
9673e4f2d ^



2de99653d ^





bd705a517 ^
fab8cee13 ^
54935e2e7 ^
a64d4dc35 ^


9659540b1 ^





































e65c296bc ^

a64d4dc35 ^
5a21892da ^
3d7abb958 ^
0d19de18c ^
a23d418d7 ^
e353737e3 ^

d4bca58b7 ^
1a3b730bf ^

2958adc47 ^

c55f5b34e ^
5506e8491 ^
5f64d7a35 ^
d01ff8994 ^
d01ff8994 ^
d01ff8994 ^




258aabba6 ^
258aabba6 ^



258aabba6 ^
258aabba6 ^
258aabba6 ^







8b5aa221a ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132