add new methods avg, sum, at, keys, of
Add
- of() static method, for creating Arr instance from parameters;
- keys() method for extracting keys from Arr;
- at() method for returning the item at that integer index;
- sum() method;
- avg() method;
- doc/arr.md: class usage documentation.
Improve
- Improve concat() method, now accept array and scalar values.