blob: 219196212695cccb01aff27e5aeebde451488141 (
plain)
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
|
February 17, 2015.
Functions (defn) have (1) a static type signature and (2) an implementation
You can define them seperately
type signature -> defmulti
implementation -> defmethod
Thus, you can have multiple defmethods per defmulti.
However, you cannot have:
defmulti a(x:?) -> ?
defn a(x:Int) -> Int
because it is unclear which to call (2 matching static type signatures)
TODO Implement resolve-kinds
TODO Read initialization spec
TODO Read through make-explicit-reset
TODO If you feel up for it, rewrite make-explicit-reset
TODO If you feel up for it, read through initialize-registers
TODO Look into testing framework
TODO
Make stanza a git repo
Write Makefile
Write installation instructions for stanza
Add P-Money as admin to github/firrtl (CuppoJava)
|