comparison src/ploki/TODO @ 4223:ac0403686959

<oerjan> rm -rf src/ploki; mv ploki src
author HackBot
date Fri, 20 Dec 2013 22:18:50 +0000
parents
children
comparison
equal deleted inserted replaced
4222:b0f3e267bb1e 4223:ac0403686959
1 fix write/seek semantics for Z buffers
2
3 add sort function
4
5 add new value type: hashes
6 @TYPE OF hash : "hash"
7 - create:
8 @TAN list; #<key1 value1 key2 value2#>
9 @SIN list; #<key1 key2#>
10 @COS list; #<value1 value2#>
11 - decompose:
12 @ATAN hash; -> #<key2 value2 key1 value1#>
13 @ASIN hash; -> #<key2 key1#>
14 @ACOS hash; -> #<value2 value1#>
15 - push entries:
16 hash + hashmod
17 - pop entries:
18 hash - hashmod
19 - replace (-+) entries:
20 hash _ hashmod
21 - index:
22 hash . key
23 - slice:
24 hash . #<key1 key2#>
25 - remove:
26 hash % key
27 hash % #<key1 key2#>
28 - get depth:
29 hash / key