Dapp-a-day 20: Multiarray Reporter

View this thread on: d.buzz | hive.blog | peakd.com | ecency.com
·@nexusdev·
0.000 HBD
Dapp-a-day 20: Multiarray Reporter
https://www.steemimg.com/images/2016/09/03/dapp-a-day-20402x0e30e.png
___
**You are probabbly familliar with dapples //@log feature which can be used to log strings or variables out during a dapple test --report execution. But did you know that you can also generate beautiful reports using //@doc?**

In todays dapp-a-day we will explore the reporter and also answer the question "If you decrese the size of a nested array, will the nested arrays be deleted or just the pointer like it is done with mappings?", lets see by looking at our nicely generated report. (which was generated with dapple test --report)

```{js}
multiarray length: 0
multiarray.length++;
multiarray length: 1
multiarray[0] length: 0
multiarray[0].length++;
multiarray[0].length++;
multiarray[0][0]: 0
multiarray[0][0] = 1;
multiarray[0][1] = 1;
multiarray[0] length: 2
multiarray[0][0]: 1
multiarray[0][1]: 1
multiarray.length--;
multiarray[0] length: 0
multiarray.length++;
multiarray[0] length: 0
multiarray[0].length++;
multiarray[0].length++;
multiarray[0][0]: 0
multiarray[0][1]: 0
```
### the first 10 number of the fibonacci sequence
#### 0x1
#### 0x2
#### 0x3
#### 0x5
#### 0x8
#### 0xd
#### 0x15
#### 0x22
#### 0x37
#### 0x59

[github/nexusdev/multiarray-reporter](https://github.com/nexusdev/multiarray-reporter)
👍 , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,